We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cf6ab9c commit 7e432b0Copy full SHA for 7e432b0
libraries/WiFi/src/WiFiGeneric.cpp
@@ -567,6 +567,11 @@ bool wifiLowLevelInit(bool persistent){
567
if(!persistent){
568
lowLevelInitDone = esp_wifi_set_storage(WIFI_STORAGE_RAM) == ESP_OK;
569
}
570
+ if(lowLevelInitDone){
571
+ arduino_event_t arduino_event;
572
+ arduino_event.event_id = ARDUINO_EVENT_WIFI_READY;
573
+ postArduinoEvent(&arduino_event);
574
+ }
575
576
return lowLevelInitDone;
577
0 commit comments