We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6b2965d commit 9ea4051Copy full SHA for 9ea4051
tests/validation/uart/uart.ino
@@ -54,9 +54,7 @@ public:
54
55
void begin(unsigned long baudrate) {
56
// 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
58
pinMode(default_rx_pin, INPUT_PULLUP);
59
- #endif
60
serial.begin(baudrate, SERIAL_8N1, default_rx_pin, default_tx_pin);
61
while (!serial) {
62
delay(10);
0 commit comments