mirror of
				https://github.com/esphome/esphome.git
				synced 2025-10-30 22:53:59 +00:00 
			
		
		
		
	Use the correct UART/Serial when CDC is enabled (#5957)
				
					
				
			This commit is contained in:
		| @@ -237,8 +237,8 @@ void Logger::pre_setup() { | |||||||
|         Serial1.begin(this->baud_rate_); |         Serial1.begin(this->baud_rate_); | ||||||
| #else | #else | ||||||
| #if ARDUINO_USB_CDC_ON_BOOT | #if ARDUINO_USB_CDC_ON_BOOT | ||||||
|         this->hw_serial_ = &Serial; |         this->hw_serial_ = &Serial0; | ||||||
|         Serial.begin(this->baud_rate_); |         Serial0.begin(this->baud_rate_); | ||||||
| #else | #else | ||||||
|         this->hw_serial_ = &Serial; |         this->hw_serial_ = &Serial; | ||||||
|         Serial.begin(this->baud_rate_); |         Serial.begin(this->baud_rate_); | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user