From 1e9c5ad40e4c3ea044144b91988b1e98518a71a2 Mon Sep 17 00:00:00 2001 From: Theo Arends <11044339+arendst@users.noreply.github.com> Date: Thu, 21 Nov 2024 16:30:27 +0100 Subject: [PATCH] Fix intermittent ESP32 serial lost on restart --- tasmota/tasmota_support/support_wifi.ino | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tasmota/tasmota_support/support_wifi.ino b/tasmota/tasmota_support/support_wifi.ino index 35b07046e..aafabb631 100644 --- a/tasmota/tasmota_support/support_wifi.ino +++ b/tasmota/tasmota_support/support_wifi.ino @@ -216,7 +216,7 @@ void WifiBegin(uint8_t flag, uint8_t channel) { if (WiFi.getMode() != WIFI_AP_STA || !RgxApUp()) { // Preserve range extender connections (#17103) #endif // USE_WIFI_RANGE_EXTENDER WiFi.disconnect(true); // Delete SDK wifi config - delay(200); + delay(10); WifiSetMode(WIFI_STA); // Disable AP mode #ifdef USE_WIFI_RANGE_EXTENDER }