mirror of
https://github.com/micropython/micropython.git
synced 2026-01-04 11:10:14 +01:00
All the existing `machine.UART` tests in extmod and extmod_hardware are converted to use the new `target_wiring` scheme, which removes a lot of duplicated board-specific settings. All the existing boards that were supported by these UART tests now have their own `target_wiring` file. Some configurations are board specific (eg NUCLEO_WB55) and others are port specific. Signed-off-by: Damien George <damien@micropython.org>
9 lines
216 B
Python
9 lines
216 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 = {}
|