Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion tests/validation/uart/uart.ino
Original file line number Diff line number Diff line change
Expand Up @@ -399,7 +399,8 @@ void auto_baudrate_test(void) {

if (TEST_UART_NUM == 1) {
selected_serial = &Serial1;
uart_internal_loopback(0, RX1);
// UART1 pins were swapped because of ESP32-P4
uart_internal_loopback(0, /*RX1*/ TX1);
} else {
#ifdef RX2
selected_serial = &Serial2;
Expand Down
Loading