From c0da476c05bbe724e53c5331a22c1bd91ad11de2 Mon Sep 17 00:00:00 2001 From: Pawel Jalocha Date: Wed, 11 Aug 2021 12:41:07 +0100 Subject: [PATCH] Fix console log files data --- main/gps.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/main/gps.cpp b/main/gps.cpp index 847620b..99016a0 100644 --- a/main/gps.cpp +++ b/main/gps.cpp @@ -623,6 +623,7 @@ static void GPS_NMEA(void) // wh else if(NMEA.isGxGGA()) { int8_t SameTime = GPS_DateTime.ReadTime((const char *)NMEA.ParmPtr(0)); // 1=same time, 0=diff. time, -1=error if(SameTime==0 && GPS_Burst.GxGGA) { GPS_BurstComplete(); GPS_BurstEnd(); GPS_BurstStart(NMEA.Len); } + GPS_DateTime.ReadDate((const char *)NMEA.ParmPtr(6)); GPS_Burst.GxGGA=1; } else if(NMEA.isGxGSA()) { GPS_Burst.GxGSA=1; }