Skip to content

Commit 1b3f033

Browse files
committed
Disable save in ex 14 so other examples work.
1 parent 460836c commit 1b3f033

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

examples/ZED-F9P/Example14_NTRIPServer/Example14_NTRIPServer.ino

+4-2
Original file line numberDiff line numberDiff line change
@@ -135,8 +135,10 @@ void setup()
135135
//but it takes much longer to start generating RTCM data. See Example4_BaseWithLCD
136136
//myGNSS.enableSurveyMode(60, 5.000); //Enable Survey in, 60 seconds, 5.0m
137137

138-
if (myGNSS.saveConfiguration() == false) //Save the current settings to flash and BBR
139-
Serial.println(F("Module failed to save"));
138+
//If you were setting up a full GNSS station, you would want to save these settings.
139+
//Because setting an incorrect static position will disable the ability to get a lock, we will skip saving during this example
140+
//if (myGNSS.saveConfiguration() == false) //Save the current settings to flash and BBR
141+
// Serial.println(F("Module failed to save"));
140142

141143
Serial.println(F("Module configuration complete"));
142144
}

0 commit comments

Comments
 (0)