mirror of
https://github.com/micropython/micropython.git
synced 2026-05-01 05:10:15 +02:00
8f24c86263
Signed-off-by: Damien George <damien@micropython.org>
12 lines
235 B
Python
12 lines
235 B
Python
# Target wiring for general rp2 board.
|
|
#
|
|
# Connect:
|
|
# - GPIO0 to GPIO1
|
|
|
|
uart_loopback_args = (0,)
|
|
uart_loopback_kwargs = {"tx": "GPIO0", "rx": "GPIO1"}
|
|
|
|
spi_standalone_args_list = [(0,), (1,)]
|
|
|
|
pwm_loopback_pins = [("GPIO0", "GPIO1")]
|