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 391e7fc commit e04675aCopy full SHA for e04675a
Firmware/RTK_Everywhere/RTK_Everywhere.ino
@@ -1483,7 +1483,13 @@ void rtcUpdate()
1483
}
1484
else
1485
{
1486
- systemPrintln("No GNSS date/time available for system RTC.");
+ // Reduce the output frequency
1487
+ static uint32_t lastErrorMsec = -1000 * 1000 * 1000;
1488
+ if ((millis() - lastErrorMsec) > (30 * 1000))
1489
+ {
1490
+ lastErrorMsec = millis();
1491
+ systemPrintln("No GNSS date/time available for system RTC.");
1492
+ }
1493
} // End timeValid
1494
} // End lastRTCAttempt
1495
} // End online.gnss
0 commit comments