Skip to content

Commit 9ea4051

Browse files
authored
feat(uart_ci): reverting the wokwi patch, once it didn't make any difference
1 parent 6b2965d commit 9ea4051

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

tests/validation/uart/uart.ino

-2
Original file line numberDiff line numberDiff line change
@@ -54,9 +54,7 @@ public:
5454

5555
void begin(unsigned long baudrate) {
5656
// pinMode will force enabing the internal pullup resistor (IDF 5.3.2 Change)
57-
#ifdef ESP32 // Wokwi won't define it, therefore, it will ignore this line and pass Wokwi ESP32 CI
5857
pinMode(default_rx_pin, INPUT_PULLUP);
59-
#endif
6058
serial.begin(baudrate, SERIAL_8N1, default_rx_pin, default_tx_pin);
6159
while (!serial) {
6260
delay(10);

0 commit comments

Comments
 (0)