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 904fb01 commit f3dcbdcCopy full SHA for f3dcbdc
tasmota/tasmota_support/support.ino
@@ -2138,7 +2138,9 @@ void ClaimSerial(void) {
2138
#ifdef ESP32
2139
#if CONFIG_IDF_TARGET_ESP32C3 || CONFIG_IDF_TARGET_ESP32C6 || CONFIG_IDF_TARGET_ESP32S2 || CONFIG_IDF_TARGET_ESP32S3
2140
#ifdef USE_USB_CDC_CONSOLE
2141
- return; // USB console does not use serial
+ if (!tasconsole_serial) {
2142
+ return; // USB console does not use serial
2143
+ }
2144
#endif // USE_USB_CDC_CONSOLE
2145
#endif // ESP32C3/C6, S2 or S3
2146
#endif // ESP32
0 commit comments