Changed time_t to uint32_t

forgot time_t isn't defined for UNO
This commit is contained in:
Rick Sellens 2019-04-22 15:35:05 -04:00
parent e121bb53c8
commit 547b611daf
4 changed files with 4 additions and 4 deletions

BIN
.DS_Store vendored Normal file

Binary file not shown.

View File

@ -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);

BIN
examples/.DS_Store vendored Normal file

Binary file not shown.

Binary file not shown.