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 388670d commit e9fac2bCopy full SHA for e9fac2b
Firmware/RTK_Everywhere/System.ino
@@ -356,9 +356,11 @@ void printReports()
356
lastPrintPosition = millis();
357
}
358
359
- if (settings.enablePrintRoverAccuracy && (millis() - lastPrintRoverAccuracy > 2000))
+ if ((settings.enablePrintRoverAccuracy && (millis() - lastPrintRoverAccuracy > 2000))
360
+ || (PERIODIC_DISPLAY(PD_MQTT_CLIENT_DATA)))
361
{
362
lastPrintRoverAccuracy = millis();
363
+ PERIODIC_CLEAR(PD_MQTT_CLIENT_DATA);
364
365
if (online.gnss == true)
366
@@ -840,4 +842,4 @@ void trim(char *str)
840
842
++p, --l;
841
843
844
memmove(str, p, l + 1);
-}
845
+}
0 commit comments