tests/target_wiring: Add SPI instance for mimxrt, nrf, renesas-ra, samd.

Signed-off-by: Damien George <damien@micropython.org>
This commit is contained in:
Damien George
2026-01-21 20:53:39 +11:00
parent e5f772ae85
commit d291a280bd
4 changed files with 9 additions and 0 deletions

View File

@@ -5,3 +5,5 @@
uart_loopback_args = (1,)
uart_loopback_kwargs = {}
spi_standalone_args_list = [()]

View File

@@ -5,3 +5,5 @@
uart_loopback_args = (0,)
uart_loopback_kwargs = {}
spi_standalone_args_list = [(1,)]

View File

@@ -0,0 +1,3 @@
# Target wiring for general renesas-ra board.
spi_standalone_args_list = [(0,)]

View File

@@ -5,3 +5,5 @@
uart_loopback_args = ()
uart_loopback_kwargs = {"tx": "D1", "rx": "D0"}
spi_standalone_args_list = [()]