Skip to content

Commit 0f8f188

Browse files
committed
Remove faulty test for time/date for log name.
Should fix issue #36.
1 parent f6694ea commit 0f8f188

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Firmware/RTK_Surveyor/menuMessages.ino

+2-2
Original file line numberDiff line numberDiff line change
@@ -938,8 +938,8 @@ void beginLogging()
938938
{
939939
//Based on GPS data/time, create a log file in the format SFE_Surveyor_YYMMDD_HHMMSS.ubx
940940
bool timeValid = false;
941-
if (i2cGNSS.getTimeValid() == true && i2cGNSS.getDateValid() == true) //Will pass if ZED's RTC is reporting (regardless of GNSS fix)
942-
timeValid = true;
941+
// if (i2cGNSS.getTimeValid() == true && i2cGNSS.getDateValid() == true) //Will pass if ZED's RTC is reporting (regardless of GNSS fix)
942+
// timeValid = true;
943943
if (i2cGNSS.getConfirmedTime() == true && i2cGNSS.getConfirmedDate() == true) //Requires GNSS fix
944944
timeValid = true;
945945

0 commit comments

Comments
 (0)