Add workaround for crash in Arduino 2.0.9 when CDC is configured (#5987)

This commit is contained in:
Keith Burzinski 2023-12-21 19:42:12 -06:00 committed by Jesse Hills
parent 872519f7f6
commit 4f8e3211bf
No known key found for this signature in database
GPG Key ID: BEAAE804EFD8E83A

View File

@ -285,6 +285,7 @@ void Logger::pre_setup() {
#if defined(USE_ESP32_VARIANT_ESP32S2) || defined(USE_ESP32_VARIANT_ESP32S3)
#if ARDUINO_USB_CDC_ON_BOOT
this->hw_serial_ = &Serial;
Serial.setTxTimeoutMs(0); // workaround for 2.0.9 crash when there's no data connection
Serial.begin(this->baud_rate_);
#else
this->hw_serial_ = &Serial;