Revert wifi delay

This commit is contained in:
Theo Arends 2024-11-25 10:33:34 +01:00
parent 2402f7cbd1
commit e397c11e70
1 changed files with 1 additions and 1 deletions

View File

@ -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(10);
delay(200);
WifiSetMode(WIFI_STA); // Disable AP mode
#ifdef USE_WIFI_RANGE_EXTENDER
}