mirror of https://github.com/arendst/Tasmota.git
Merge pull request #7713 from ascillato/patch-1
Fix Deep-Sleep-Wake timming
This commit is contained in:
commit
9814468b32
|
@ -189,7 +189,13 @@ void WifiBegin(uint8_t flag, uint8_t channel)
|
|||
if (!WiFi.getAutoConnect()) { WiFi.setAutoConnect(true); }
|
||||
// Handle the reconnection in WifiCheckIp() since the autoreconnect keeps sending deauthentication messages which causes the AP to block traffic as it looks like an DoS attack
|
||||
// This needs to be explicitly called as "false" otherwise the default is enabled
|
||||
WiFi.setAutoReconnect(false);
|
||||
#ifdef USE_DEEPSLEEP
|
||||
if (!(DeepSleepEnabled())) { // #7621
|
||||
#endif
|
||||
WiFi.setAutoReconnect(false);
|
||||
#ifdef USE_DEEPSLEEP
|
||||
}
|
||||
#endif
|
||||
switch (flag) {
|
||||
case 0: // AP1
|
||||
case 1: // AP2
|
||||
|
|
Loading…
Reference in New Issue