make full date public
This commit is contained in:
parent
3df2e79d86
commit
06ee1eea5a
|
|
@ -167,6 +167,7 @@ public:
|
||||||
uint8_t year; ///< GMT year
|
uint8_t year; ///< GMT year
|
||||||
uint8_t month; ///< GMT month
|
uint8_t month; ///< GMT month
|
||||||
uint8_t day; ///< GMT day
|
uint8_t day; ///< GMT day
|
||||||
|
uint32_t lastDate = 2000000000L; ///< millis() when last date received
|
||||||
|
|
||||||
nmea_float_t latitude; ///< Floating point latitude value in degrees/minutes
|
nmea_float_t latitude; ///< Floating point latitude value in degrees/minutes
|
||||||
///< as received from the GPS (DDMM.MMMM)
|
///< as received from the GPS (DDMM.MMMM)
|
||||||
|
|
@ -277,7 +278,6 @@ private:
|
||||||
2000000000L; ///< millis() when last full sentence successfully parsed
|
2000000000L; ///< millis() when last full sentence successfully parsed
|
||||||
uint32_t lastFix = 2000000000L; ///< millis() when last fix received
|
uint32_t lastFix = 2000000000L; ///< millis() when last fix received
|
||||||
uint32_t lastTime = 2000000000L; ///< millis() when last time received
|
uint32_t lastTime = 2000000000L; ///< millis() when last time received
|
||||||
uint32_t lastDate = 2000000000L; ///< millis() when last date received
|
|
||||||
uint32_t recvdTime =
|
uint32_t recvdTime =
|
||||||
2000000000L; ///< millis() when last full sentence received
|
2000000000L; ///< millis() when last full sentence received
|
||||||
uint32_t sentTime = 2000000000L; ///< millis() when first character of last
|
uint32_t sentTime = 2000000000L; ///< millis() when first character of last
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue