Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion Firmware/RTK_Surveyor/menuMain.ino
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,8 @@ void menuMain()
if (online.gnss == true)
i2cGNSS.saveConfiguration(); //Save the current settings to flash and BBR on the ZED-F9P

if (restartBase == true)
//Reboot as base only if currently operating as a base station
if (restartBase && (systemState >= STATE_BASE_NOT_STARTED) && (systemState < STATE_BUBBLE_LEVEL))
{
restartBase = false;
requestChangeState(STATE_BASE_NOT_STARTED); //Restart base upon exit for latest changes to take effect
Expand Down