From 729f6239538a54ed6885617210c7fa60cd38d822 Mon Sep 17 00:00:00 2001 From: netmindz Date: Sun, 16 Feb 2025 10:33:52 +0000 Subject: [PATCH] Merge pull request #4558 from DedeHai/wifi_hardware_timing_fix Bugfix for incorrect wifi-hardware timing --- wled00/wled.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/wled00/wled.cpp b/wled00/wled.cpp index 5837c232..1c319585 100644 --- a/wled00/wled.cpp +++ b/wled00/wled.cpp @@ -1123,6 +1123,7 @@ void WLED::initConnection() #endif WiFi.disconnect(true); // close old connections + delay(5); // wait for hardware to be ready #ifdef ESP8266 WiFi.setPhyMode(force802_3g ? WIFI_PHY_MODE_11G : WIFI_PHY_MODE_11N); #endif