From 1b3f033792e5061d70004db8c1fc6665e5c9dffa Mon Sep 17 00:00:00 2001 From: Nathan Seidle Date: Sun, 12 Dec 2021 21:44:26 -0700 Subject: [PATCH] Disable save in ex 14 so other examples work. --- .../ZED-F9P/Example14_NTRIPServer/Example14_NTRIPServer.ino | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/examples/ZED-F9P/Example14_NTRIPServer/Example14_NTRIPServer.ino b/examples/ZED-F9P/Example14_NTRIPServer/Example14_NTRIPServer.ino index 86a93a5..aebdd31 100644 --- a/examples/ZED-F9P/Example14_NTRIPServer/Example14_NTRIPServer.ino +++ b/examples/ZED-F9P/Example14_NTRIPServer/Example14_NTRIPServer.ino @@ -135,8 +135,10 @@ void setup() //but it takes much longer to start generating RTCM data. See Example4_BaseWithLCD //myGNSS.enableSurveyMode(60, 5.000); //Enable Survey in, 60 seconds, 5.0m - if (myGNSS.saveConfiguration() == false) //Save the current settings to flash and BBR - Serial.println(F("Module failed to save")); + //If you were setting up a full GNSS station, you would want to save these settings. + //Because setting an incorrect static position will disable the ability to get a lock, we will skip saving during this example + //if (myGNSS.saveConfiguration() == false) //Save the current settings to flash and BBR + // Serial.println(F("Module failed to save")); Serial.println(F("Module configuration complete")); }