Files
micropython/tests/target_wiring/NUCLEO_WB55.py
Damien George 5bafb0bf68 tests: Convert all machine.UART tests to use target_wiring.
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>
2025-09-08 11:52:49 +10:00

9 lines
145 B
Python

# Target wiring for NUCLEO_WB55.
#
# Connect:
# - PA2 to PA3
# LPUART(1) is on PA2/PA3.
uart_loopback_args = ("LP1",)
uart_loopback_kwargs = {}