mirror of
https://github.com/esphome/esphome.git
synced 2024-11-10 01:07:45 +01:00
Use the correct UART/Serial
when CDC is enabled (#5957)
This commit is contained in:
parent
bf258230cd
commit
d99598bba6
1 changed files with 2 additions and 2 deletions
|
@ -237,8 +237,8 @@ void Logger::pre_setup() {
|
|||
Serial1.begin(this->baud_rate_);
|
||||
#else
|
||||
#if ARDUINO_USB_CDC_ON_BOOT
|
||||
this->hw_serial_ = &Serial;
|
||||
Serial.begin(this->baud_rate_);
|
||||
this->hw_serial_ = &Serial0;
|
||||
Serial0.begin(this->baud_rate_);
|
||||
#else
|
||||
this->hw_serial_ = &Serial;
|
||||
Serial.begin(this->baud_rate_);
|
||||
|
|
Loading…
Reference in a new issue