File tree Expand file tree Collapse file tree 2 files changed +7
-1
lines changed Expand file tree Collapse file tree 2 files changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -1260,7 +1260,6 @@ char *gnssGetRtcmLowDataRateString()
1260
1260
1261
1261
float gnssGetSurveyInStartingAccuracy ()
1262
1262
{
1263
-
1264
1263
return (settings.surveyInStartingAccuracy );
1265
1264
}
1266
1265
Original file line number Diff line number Diff line change @@ -296,6 +296,10 @@ bool um980ConfigureBase()
296
296
297
297
bool response = true ;
298
298
299
+ // Set the dynamic mode. This will cancel any base averaging mode and is needed
300
+ // to allow a freshly started device to settle in regular GNSS reception mode before issuing um980BaseAverageStart().
301
+ response &= um980SetModel (settings.dynamicModel );
302
+
299
303
response &= um980EnableRTCMBase (); // Only turn on messages, do not turn off messages. We assume the caller has
300
304
// UNLOG or similar.
301
305
@@ -313,6 +317,9 @@ bool um980ConfigureBase()
313
317
systemPrintln (" UM980 Base failed to configure" );
314
318
}
315
319
320
+ if (settings.debugGnss )
321
+ systemPrintln (" UM980 Base configured" );
322
+
316
323
return (response);
317
324
}
318
325
You can’t perform that action at this time.
0 commit comments