diff --git a/src/Afterburner.cpp b/src/Afterburner.cpp index 2b25fb5..6c07788 100644 --- a/src/Afterburner.cpp +++ b/src/Afterburner.cpp @@ -404,7 +404,7 @@ void setup() { #if USE_WIFI == 1 - sCredentials creds = NVstore.getCredentials(); + sCredentials creds = NVstore.getCredentials(); // local AP credentials if(NVstore.getUserSettings().enableWifi) { initWifi(WiFi_TriggerPin, creds.SSID, creds.APpassword); diff --git a/src/WiFi/BTCWifi.cpp b/src/WiFi/BTCWifi.cpp index 3e19da1..1d404eb 100644 --- a/src/WiFi/BTCWifi.cpp +++ b/src/WiFi/BTCWifi.cpp @@ -146,7 +146,9 @@ void doWiFiManager() { wm.process(); -/* if(WiFi.status() != WL_CONNECTED) { + if(WiFi.status() != WL_CONNECTED) { + if(isSTA) DebugPort.println("STA lost"); + isSTA = false; if(WifiReconnectHoldoff) { long tDelta = millis() - WifiReconnectHoldoff; if(tDelta >= 0) { @@ -163,8 +165,10 @@ void doWiFiManager() } } else { + if(!isSTA) DebugPort.println("STA established"); + isSTA = true; WifiReconnectHoldoff = 0; - }*/ + } #if USE_PORTAL_TRIGGER_PIN == 1 // manage handling of pin to enter WiFManager config portal