We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 38668e9 commit 4649270Copy full SHA for 4649270
cores/esp32/HardwareSerial.cpp
@@ -81,12 +81,12 @@ void serialEventRun(void) {
81
if (serialEvent && Serial0.available()) {
82
serialEvent();
83
}
84
-#if SOC_UART_NUM > 1
+#if SOC_UART_HP_NUM > 1
85
if (serialEvent1 && Serial1.available()) {
86
serialEvent1();
87
88
#endif
89
-#if SOC_UART_NUM > 2
+#if SOC_UART_HP_NUM > 2
90
if (serialEvent2 && Serial2.available()) {
91
serialEvent2();
92
0 commit comments