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 e88b483 commit 9a7dbc6Copy full SHA for 9a7dbc6
Firmware/RTK_Everywhere/RTK_Everywhere.ino
@@ -1243,7 +1243,13 @@ void loop()
1243
DMW_c("updateProvisioning");
1244
updateProvisioning(); // Check if we should attempt to connect to PointPerfect to get keys / certs / correction topic etc.
1245
1246
- delay(10); // A small delay prevents panic if no other I2C or functions are called
+ loopDelay(); // A small delay prevents panic if no other I2C or functions are called
1247
+}
1248
+
1249
+void loopDelay()
1250
+{
1251
+ if (systemState != STATE_NTPSERVER_SYNC) // No delay in NTP mode
1252
+ delay(10);
1253
}
1254
1255
// Create or close files as needed (startup or as the user changes settings)
0 commit comments