Slow WiFi connection
Posted: Fri Dec 22, 2017 6:39 pm
With ESP66, the time for WiFi connection to return "WL_CONNECTED" was often about 200ms. Now with ESP32, all attempts return 2.5sec, why? How to make the connection faster, since in ESP66 it was ~ 12x faster?
Note: I already disabled NVS thinking it would be faster, but nothing has changed (I use ESP-IDF + Arduino component).
In this example, I using static IP.
Note: I already disabled NVS thinking it would be faster, but nothing has changed (I use ESP-IDF + Arduino component).
Code: Select all
WiFi.mode(WIFI_STA);
WiFi.begin("BLABLA", "");
WiFi.config({ 192,168,9,133 }, { 192,168,9,1 }, { 255,255,255,0 }, { 8,8,8,8 });