We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d9591db commit 449f266Copy full SHA for 449f266
Firmware/RTK_Surveyor/menuMain.ino
@@ -94,7 +94,8 @@ void menuMain()
94
if (online.gnss == true)
95
i2cGNSS.saveConfiguration(); //Save the current settings to flash and BBR on the ZED-F9P
96
97
- if (restartBase == true)
+ //Reboot as base only if currently operating as a base station
98
+ if (restartBase && (systemState >= STATE_BASE_NOT_STARTED) && (systemState < STATE_BUBBLE_LEVEL))
99
{
100
restartBase = false;
101
requestChangeState(STATE_BASE_NOT_STARTED); //Restart base upon exit for latest changes to take effect
0 commit comments