You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: Firmware/RTK_Surveyor/RTK_Surveyor.ino
-35Lines changed: 0 additions & 35 deletions
Original file line number
Diff line number
Diff line change
@@ -379,41 +379,6 @@ void updateLogs()
379
379
online.logging = false;
380
380
}
381
381
382
-
if (online.logging == true)
383
-
{
384
-
//Check if we are inside the max time window for logging
385
-
if ((systemTime_minutes - startLogTime_minutes) < settings.maxLogTime_minutes)
386
-
{
387
-
//Attempt log file sync every 3000ms
388
-
if (millis() - lastUBXLogSyncTime > 3000)
389
-
{
390
-
//Attempt to write to file system. This avoids collisions with file writing from other functions like F9PSerialReadTask() and recordSystemSettingsToFile()
391
-
if (xSemaphoreTake(xFATSemaphore, fatSemaphore_maxWait) == pdPASS)
392
-
{
393
-
if (productVariant == RTK_SURVEYOR)
394
-
digitalWrite(pin_baseStatusLED, !digitalRead(pin_baseStatusLED)); //Blink LED to indicate logging activity
Serial.println(F("Files found (date time size name):\n\r"));
62
-
sd.ls(LS_R | LS_DATE | LS_SIZE);
61
+
//Attempt to write to file system. This avoids collisions with file writing from other functions like recordSystemSettingsToFile() and F9PSerialReadTask()
62
+
if (xSemaphoreTake(xFATSemaphore, fatSemaphore_maxWait) == pdPASS)
63
+
{
64
+
Serial.println(F("Files found (date time size name):\n\r"));
0 commit comments