File tree Expand file tree Collapse file tree 2 files changed +7
-2
lines changed Expand file tree Collapse file tree 2 files changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -1883,6 +1883,11 @@ void displayNoWiFi(uint16_t displayTime)
1883
1883
displayMessage (" No WiFi" , displayTime);
1884
1884
}
1885
1885
1886
+ void displayNoSSIDs (uint16_t displayTime)
1887
+ {
1888
+ displayMessage (" No SSIDs" , displayTime);
1889
+ }
1890
+
1886
1891
void displayRoverStart (uint16_t displayTime)
1887
1892
{
1888
1893
if (online.display == true )
Original file line number Diff line number Diff line change @@ -744,7 +744,7 @@ void updateSystemState()
744
744
// If there is no WiFi setup, and no keys, skip everything
745
745
else if (wifiNetworkCount () == 0 && strlen (settings.pointPerfectCurrentKey ) == 0 )
746
746
{
747
- displayNoWiFi (2000 );
747
+ displayNoSSIDs (2000 );
748
748
changeState (settings.lastState ); // Go to either rover or base
749
749
}
750
750
@@ -821,7 +821,7 @@ void updateSystemState()
821
821
// Normally, this would be caught during STATE_KEYS_STARTED
822
822
else if (wifiNetworkCount () == 0 )
823
823
{
824
- displayNoWiFi (1000 );
824
+ displayNoSSIDs (1000 );
825
825
changeState (
826
826
STATE_KEYS_DAYS_REMAINING); // We have valid keys, we've already tried today. No need to try again.
827
827
}
You can’t perform that action at this time.
0 commit comments