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 dda9380 commit a45c584Copy full SHA for a45c584
Firmware/RTK_Everywhere/Tasks.ino
@@ -1263,6 +1263,11 @@ void handleGnssDataTask(void *e)
1263
// Determine if the SD card is enabled for logging
1264
connected = online.logging && ((systemTime_minutes - startLogTime_minutes) < settings.maxLogTime_minutes);
1265
1266
+ // Block logging during Web Config to avoid SD collisions
1267
+ // See issue: https://github.com/sparkfun/SparkFun_RTK_Everywhere_Firmware/issues/693
1268
+ if(webServerIsRunning() == true)
1269
+ connected = false;
1270
+
1271
// If user wants to log, record to SD
1272
if (!connected)
1273
// Discard the data
0 commit comments