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 a67cd31 commit 9d2db24Copy full SHA for 9d2db24
cores/esp32/HWCDC.cpp
@@ -147,11 +147,12 @@ static void hw_cdc_isr_handler(void *arg) {
147
}
148
149
150
-inline bool HWCDC::isPlugged(void) {
+// Moved to header file as inline function. Kept just as future reference.
151
+//inline bool HWCDC::isPlugged(void) {
152
// SOF ISR is causing esptool to be unable to upload firmware to the board
153
// Timer test for SOF seems to work when uploading firmware
- return usb_serial_jtag_is_connected();//(lastSOF_ms + SOF_TIMEOUT) >= millis();
154
-}
+// return usb_serial_jtag_is_connected();//(lastSOF_ms + SOF_TIMEOUT) >= millis();
155
+//}
156
157
bool HWCDC::isCDC_Connected() {
158
static bool running = false;
0 commit comments