mirror of
				https://github.com/esphome/esphome.git
				synced 2025-10-30 22:53:59 +00:00 
			
		
		
		
	Fix missing yield in uart causing watchdog timer resets in esp32 when blocking waiting on serial responses. (#1016)
This commit is contained in:
		| @@ -96,6 +96,7 @@ bool UARTComponent::check_read_timeout_(size_t len) { | |||||||
|       ESP_LOGE(TAG, "Reading from UART timed out at byte %u!", this->available()); |       ESP_LOGE(TAG, "Reading from UART timed out at byte %u!", this->available()); | ||||||
|       return false; |       return false; | ||||||
|     } |     } | ||||||
|  |     yield(); | ||||||
|   } |   } | ||||||
|   return true; |   return true; | ||||||
| } | } | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user