Previous issue: [4421](https://github.com/espressif/arduino-esp32/issues/4421) Even after fix [80e9e42](https://github.com/espressif/arduino-esp32/commit/80e9e42c3b7a8ad646cd8803c9f4f84e35c9ebb1), I'm still getting: ``` [ 10769][V][WiFiGeneric.cpp:315] _arduino_event_cb(): AP Started ... [ 10800][E][WiFiGeneric.cpp:983] mode(): Could not set mode! 12289 ``` This line: https://github.com/espressif/arduino-esp32/blob/beedeea4541116106b38fc5c3a03821cdf6fe288/libraries/WiFi/src/WiFiGeneric.cpp#L568 Should logically be: `lowLevelInitDone = not (esp_wifi_deinit() == ESP_OK);` As if deinit is successful, init flag should be false and not true.