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>
17 lines
382 B
Python
17 lines
382 B
Python
# Target wiring for PYBV10, PYBV11, PYBLITEV10, PYBD_SF2, PYBD_SF3, PYBD_SF6.
|
|
#
|
|
# Connect:
|
|
# - X1 to X2
|
|
|
|
# UART("XA") is on X1/X2 (usually UART(4) on PA0/PA1).
|
|
uart_loopback_args = ("XA",)
|
|
uart_loopback_kwargs = {}
|
|
|
|
spi_standalone_args_list = [(1,), (2,)]
|
|
|
|
# CAN args assume no connection for single device tests
|
|
can_args = (1,)
|
|
can_kwargs = {}
|
|
|
|
pwm_loopback_pins = [("X1", "X2")]
|