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 b87de12 commit 09c3792Copy full SHA for 09c3792
Firmware/RTK_Surveyor/Rover.ino
@@ -8,9 +8,12 @@ bool configureUbloxModuleRover()
8
//Survey mode is only available on ZED-F9P modules
9
if (zedModuleType == PLATFORM_F9P)
10
{
11
- response = i2cGNSS.disableSurveyMode(maxWait); //Disable survey
12
- if (response == false)
13
- Serial.println(F("Disable Survey failed"));
+ if (i2cGNSS.getSurveyInActive(100) == true)
+ {
+ response = i2cGNSS.disableSurveyMode(maxWait); //Disable survey
14
+ if (response == false)
15
+ Serial.println(F("Disable Survey failed"));
16
+ }
17
}
18
19
// Set dynamic model
0 commit comments