Changed time_t to uint32_t
forgot time_t isn't defined for UNO
This commit is contained in:
parent
e121bb53c8
commit
547b611daf
|
|
@ -183,10 +183,10 @@ class Adafruit_GPS {
|
||||||
boolean parseFix(char *);
|
boolean parseFix(char *);
|
||||||
// Make all of these times far in the past by setting them near the middle of the
|
// Make all of these times far in the past by setting them near the middle of the
|
||||||
// millis() range. Timing assumes that sentences are parsed promptly.
|
// millis() range. Timing assumes that sentences are parsed promptly.
|
||||||
time_t lastFix = 2000000000L; // millis() when last fix received
|
uint32_t lastFix = 2000000000L; // millis() when last fix received
|
||||||
time_t lastTime = 2000000000L; // millis() when last time received
|
uint32_t lastTime = 2000000000L; // millis() when last time received
|
||||||
time_t lastDate = 2000000000L; // millis() when last date received
|
uint32_t lastDate = 2000000000L; // millis() when last date received
|
||||||
time_t recvdTime = 2000000000L; // millis() when last full sentence received
|
uint32_t recvdTime = 2000000000L; // millis() when last full sentence received
|
||||||
boolean paused;
|
boolean paused;
|
||||||
|
|
||||||
uint8_t parseResponse(char *response);
|
uint8_t parseResponse(char *response);
|
||||||
|
|
|
||||||
Binary file not shown.
Binary file not shown.
Loading…
Reference in New Issue