File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 2323*/
2424
2525const int FIRMWARE_VERSION_MAJOR = 2 ;
26- const int FIRMWARE_VERSION_MINOR = 1 ;
26+ const int FIRMWARE_VERSION_MINOR = 2 ;
2727
2828#define COMPILE_WIFI // Comment out to remove WiFi functionality
2929#define COMPILE_BT // Comment out to remove Bluetooth functionality
Original file line number Diff line number Diff line change @@ -1121,8 +1121,8 @@ void updateSystemState()
11211121 changeState (settings.lastState ); // Go to either rover or base
11221122 }
11231123
1124- // If there is no WiFi setup, skip everything
1125- else if (strlen (settings.home_wifiSSID ) == 0 )
1124+ // If there is no WiFi setup, and no keys, skip everything
1125+ else if (strlen (settings.home_wifiSSID ) == 0 && strlen (settings. pointPerfectCurrentKey ) == 0 )
11261126 {
11271127 changeState (settings.lastState ); // Go to either rover or base
11281128 }
You can’t perform that action at this time.
0 commit comments