File tree Expand file tree Collapse file tree 1 file changed +7
-4
lines changed
Expand file tree Collapse file tree 1 file changed +7
-4
lines changed Original file line number Diff line number Diff line change @@ -269,9 +269,12 @@ void updateAccuracyLEDs()
269269 {
270270 if (horizontalAccuracy > 0 )
271271 {
272- Serial.print (" Rover Accuracy (m): " );
273- Serial.print (horizontalAccuracy, 4 ); // Print the accuracy with 4 decimal places
274- Serial.println ();
272+ if (settings.enablePrintRoverAccuracy )
273+ {
274+ Serial.print (" Rover Accuracy (m): " );
275+ Serial.print (horizontalAccuracy, 4 ); // Print the accuracy with 4 decimal places
276+ Serial.println ();
277+ }
275278
276279 if (productVariant == RTK_SURVEYOR)
277280 {
@@ -301,7 +304,7 @@ void updateAccuracyLEDs()
301304 }
302305 }
303306 }
304- else
307+ else if (settings. enablePrintRoverAccuracy )
305308 {
306309 Serial.print (" Rover Accuracy: " );
307310 Serial.print (horizontalAccuracy);
You can’t perform that action at this time.
0 commit comments