Skip to content

Commit 38a70cc

Browse files
Raffael Rostagnommahadevan108
authored andcommitted
tests: drivers: spi: esp32c6: Fix overlay configuration for loopback
Fixes overlay configuration to allow running the test on CI without externally connecting two pins. Signed-off-by: Raffael Rostagno <[email protected]>
1 parent c4b7903 commit 38a70cc

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tests/drivers/spi/spi_loopback/socs/esp32c6.overlay

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,11 @@
88
spim2_loopback: spim2_loopback {
99
group1 {
1010
pinmux = <SPIM2_MISO_GPIO2>;
11-
output-enable; /* Connect GPIO2 and GPIO3 externally for testing */
11+
output-enable; /* Enable internal loopback */
1212
};
1313
group2 {
14-
pinmux = <SPIM2_MOSI_GPIO3>;
15-
input-enable; /* Connect GPIO2 and GPIO3 externally for testing */
14+
pinmux = <SPIM2_MOSI_GPIO2>;
15+
input-enable; /* Enable internal loopback */
1616
};
1717
group3 {
1818
pinmux = <SPIM2_SCLK_GPIO6>,

0 commit comments

Comments
 (0)