Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 4ef3148

Browse files
authoredOct 9, 2024··
fix(uart): new testing loopback API
Update RxFIFOFull_Demo.ino to use new testing API.
1 parent 55a2d1e commit 4ef3148

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎libraries/ESP32/examples/Serial/RxFIFOFull_Demo/RxFIFOFull_Demo.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ void setup() {
4747
// GPIO4 <--> GPIO5 using external wire
4848
Serial1.begin(BAUD, SERIAL_8N1, RXPIN, TXPIN); // Rx = 4, Tx = 5 will work for ESP32, S2, S3 and C3
4949
#if USE_INTERNAL_PIN_LOOPBACK
50-
uart_internal_loopback(TEST_UART, RXPIN);
50+
uart_internal_loopback(TEST_UART, true);
5151
#endif
5252

5353
for (uint8_t i = 0; i < sizeof(fifoFullTestCases); i++) {

0 commit comments

Comments
 (0)
Please sign in to comment.