We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent baad42e commit 3d57815Copy full SHA for 3d57815
cores/esp32/HardwareSerial.cpp
@@ -47,12 +47,6 @@ HardwareSerial Serial2(2);
47
48
void serialEventRun(void)
49
{
50
-#if HWCDC_SERIAL_IS_DEFINED == 1 // Hardware JTAG CDC Event
51
- if(HWCDCSerialEvent && HWCDCSerial.available()) HWCDCSerialEvent();
52
-#endif
53
-#if USB_SERIAL_IS_DEFINED == 1 // Native USB CDC Event
54
- if(USBSerialEvent && USBSerial.available()) USBSerialEvent();
55
56
// UART0 is default serialEvent()
57
if(serialEvent && Serial.available()) serialEvent();
58
#if SOC_UART_NUM > 1
0 commit comments