Fix build issue with UART component when building with Arduino and CDC (#5964)

This commit is contained in:
Keith Burzinski 2023-12-18 17:11:07 -06:00 committed by GitHub
parent 8961e8ab32
commit 3ea5054cf2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 0 deletions

View File

@ -88,7 +88,11 @@ void ESP32ArduinoUARTComponent::setup() {
#endif
static uint8_t next_uart_num = 0;
if (is_default_tx && is_default_rx && next_uart_num == 0) {
#if ARDUINO_USB_CDC_ON_BOOT
this->hw_serial_ = &Serial0;
#else
this->hw_serial_ = &Serial;
#endif
next_uart_num++;
} else {
#ifdef USE_LOGGER