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>
This commit is contained in:
Damien George
2025-08-19 14:08:09 +10:00
parent 3285e52127
commit 5bafb0bf68
15 changed files with 91 additions and 163 deletions

View File

@@ -0,0 +1,7 @@
# Target wiring for general esp32 board.
#
# Connect:
# - GPIO4 to GPIO5
uart_loopback_args = (1,)
uart_loopback_kwargs = {"tx": 4, "rx": 5}