2020-02-06 15:39:21 +00:00
|
|
|
|
|
|
|
#include "GPS.h"
|
2020-02-19 15:58:51 +00:00
|
|
|
#include "time.h"
|
|
|
|
#include <sys/time.h>
|
2020-02-23 01:40:31 +00:00
|
|
|
#include "configuration.h"
|
2020-02-06 15:39:21 +00:00
|
|
|
|
2020-02-06 16:18:20 +00:00
|
|
|
// stuff that really should be in in the instance instead...
|
2020-02-06 15:39:21 +00:00
|
|
|
HardwareSerial _serial_gps(GPS_SERIAL_NUM);
|
2020-02-20 02:51:17 +00:00
|
|
|
uint32_t timeStartMsec; // Once we have a GPS lock, this is where we hold the initial msec clock that corresponds to that time
|
|
|
|
uint64_t zeroOffsetSecs; // GPS based time in secs since 1970 - only updated once on initial lock
|
2020-02-20 04:02:57 +00:00
|
|
|
|
2020-02-21 20:24:35 +00:00
|
|
|
RTC_DATA_ATTR bool timeSetFromGPS; // We only reset our time once per _boot_ after that point just run from the internal clock (even across sleeps)
|
2020-02-06 15:39:21 +00:00
|
|
|
|
|
|
|
GPS gps;
|
2020-02-21 16:41:36 +00:00
|
|
|
bool hasValidLocation; // default to false, until we complete our first read
|
2020-02-23 01:40:31 +00:00
|
|
|
bool wantNewLocation = true;
|
2020-02-06 15:39:21 +00:00
|
|
|
|
2020-02-21 20:24:35 +00:00
|
|
|
GPS::GPS() : PeriodicTask()
|
2020-02-06 15:39:21 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
void GPS::setup()
|
2020-02-19 16:17:28 +00:00
|
|
|
{
|
|
|
|
readFromRTC();
|
|
|
|
|
|
|
|
#ifdef GPS_RX_PIN
|
|
|
|
_serial_gps.begin(GPS_BAUDRATE, SERIAL_8N1, GPS_RX_PIN, GPS_TX_PIN);
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
void GPS::readFromRTC()
|
2020-02-06 15:39:21 +00:00
|
|
|
{
|
2020-02-19 15:58:51 +00:00
|
|
|
struct timeval tv; /* btw settimeofday() is helpfull here too*/
|
|
|
|
|
|
|
|
if (!gettimeofday(&tv, NULL))
|
|
|
|
{
|
|
|
|
uint32_t now = millis();
|
|
|
|
|
2020-02-20 04:02:57 +00:00
|
|
|
DEBUG_MSG("Read RTC time as %ld (cur millis %u) valid=%d\n", tv.tv_sec, now, timeSetFromGPS);
|
2020-02-19 15:58:51 +00:00
|
|
|
timeStartMsec = now;
|
2020-02-19 18:53:09 +00:00
|
|
|
zeroOffsetSecs = tv.tv_sec;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// If we haven't yet set our RTC this boot, set it from a GPS derived time
|
|
|
|
void GPS::perhapsSetRTC(const struct timeval *tv)
|
|
|
|
{
|
|
|
|
if (!timeSetFromGPS)
|
|
|
|
{
|
|
|
|
timeSetFromGPS = true;
|
|
|
|
DEBUG_MSG("Setting RTC %ld secs\n", tv->tv_sec);
|
|
|
|
settimeofday(tv, NULL);
|
|
|
|
readFromRTC();
|
2020-02-19 15:58:51 +00:00
|
|
|
}
|
2020-02-06 15:39:21 +00:00
|
|
|
}
|
|
|
|
|
2020-02-20 02:51:17 +00:00
|
|
|
#include <time.h>
|
|
|
|
|
2020-02-06 16:18:20 +00:00
|
|
|
// for the time being we need to rapidly read from the serial port to prevent overruns
|
2020-02-06 15:39:21 +00:00
|
|
|
void GPS::loop()
|
|
|
|
{
|
|
|
|
PeriodicTask::loop();
|
2020-02-21 16:41:36 +00:00
|
|
|
}
|
2020-02-06 15:39:21 +00:00
|
|
|
|
2020-02-21 16:41:36 +00:00
|
|
|
uint32_t GPS::getTime()
|
|
|
|
{
|
|
|
|
return ((millis() - timeStartMsec) / 1000) + zeroOffsetSecs;
|
|
|
|
}
|
|
|
|
|
|
|
|
uint32_t GPS::getValidTime()
|
|
|
|
{
|
|
|
|
return timeSetFromGPS ? getTime() : 0;
|
|
|
|
}
|
|
|
|
|
2020-02-21 20:24:35 +00:00
|
|
|
/// Returns true if we think the board can enter deep or light sleep now (we might be trying to get a GPS lock)
|
|
|
|
bool GPS::canSleep()
|
|
|
|
{
|
|
|
|
return !wantNewLocation;
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Prepare the GPS for the cpu entering deep or light sleep, expect to be gone for at least 100s of msecs
|
|
|
|
void GPS::prepareSleep()
|
|
|
|
{
|
|
|
|
// discard all rx serial bytes so we don't try to parse them when we come back
|
|
|
|
while (_serial_gps.available())
|
|
|
|
{
|
|
|
|
_serial_gps.read();
|
|
|
|
}
|
|
|
|
|
|
|
|
// make the parser bail on whatever it was parsing
|
|
|
|
encode('\n');
|
|
|
|
}
|
|
|
|
|
2020-02-21 18:20:47 +00:00
|
|
|
void GPS::doTask()
|
2020-02-21 16:41:36 +00:00
|
|
|
{
|
2020-02-06 16:18:20 +00:00
|
|
|
#ifdef GPS_RX_PIN
|
2020-02-21 16:41:36 +00:00
|
|
|
// Consume all characters that have arrived
|
|
|
|
|
2020-02-06 15:39:21 +00:00
|
|
|
while (_serial_gps.available())
|
|
|
|
{
|
2020-02-06 16:18:20 +00:00
|
|
|
encode(_serial_gps.read());
|
2020-02-23 01:40:31 +00:00
|
|
|
// DEBUG_MSG("Got GPS response\n");
|
2020-02-06 16:18:20 +00:00
|
|
|
}
|
|
|
|
|
2020-02-19 15:58:51 +00:00
|
|
|
if (!timeSetFromGPS && time.isValid() && date.isValid())
|
2020-02-06 16:18:20 +00:00
|
|
|
{
|
2020-02-19 16:17:28 +00:00
|
|
|
struct timeval tv;
|
2020-02-06 16:18:20 +00:00
|
|
|
|
2020-02-23 01:40:31 +00:00
|
|
|
DEBUG_MSG("Got time from GPS\n");
|
|
|
|
|
2020-02-20 02:51:17 +00:00
|
|
|
/* Convert to unix time
|
|
|
|
The Unix epoch (or Unix time or POSIX time or Unix timestamp) is the number of seconds that have elapsed since January 1, 1970 (midnight UTC/GMT), not counting leap seconds (in ISO 8601: 1970-01-01T00:00:00Z).
|
|
|
|
*/
|
|
|
|
struct tm t;
|
|
|
|
t.tm_sec = time.second();
|
|
|
|
t.tm_min = time.minute();
|
|
|
|
t.tm_hour = time.hour();
|
|
|
|
t.tm_mday = date.day();
|
|
|
|
t.tm_mon = date.month() - 1;
|
|
|
|
t.tm_year = date.year() - 1900;
|
|
|
|
t.tm_isdst = false;
|
|
|
|
time_t res = mktime(&t);
|
|
|
|
tv.tv_sec = res;
|
|
|
|
tv.tv_usec = 0; // time.centisecond() * (10 / 1000);
|
2020-02-06 16:18:20 +00:00
|
|
|
|
2020-02-19 18:53:09 +00:00
|
|
|
perhapsSetRTC(&tv);
|
2020-02-06 15:39:21 +00:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2020-02-06 16:18:20 +00:00
|
|
|
if (location.isValid() && location.isUpdated())
|
|
|
|
{ // we only notify if position has changed
|
|
|
|
// DEBUG_MSG("new gps pos\n");
|
2020-02-21 16:41:36 +00:00
|
|
|
hasValidLocation = true;
|
2020-02-21 20:24:35 +00:00
|
|
|
wantNewLocation = false;
|
2020-02-06 16:18:20 +00:00
|
|
|
notifyObservers();
|
|
|
|
}
|
2020-02-21 20:24:35 +00:00
|
|
|
else // we didn't get a location update, go back to sleep and hope the characters show up
|
|
|
|
wantNewLocation = true;
|
2020-02-21 16:41:36 +00:00
|
|
|
|
2020-02-21 20:24:35 +00:00
|
|
|
// Once we have sent a location once we only poll the GPS rarely, otherwise check back every 100ms until we have something over the serial
|
|
|
|
setPeriod(hasValidLocation && !wantNewLocation ? 30 * 1000 : 100);
|
2020-02-06 15:39:21 +00:00
|
|
|
}
|
|
|
|
|
2020-02-23 01:40:31 +00:00
|
|
|
void GPS::startLock()
|
2020-02-22 21:14:10 +00:00
|
|
|
{
|
2020-02-22 22:56:19 +00:00
|
|
|
DEBUG_MSG("Looking for GPS lock\n");
|
2020-02-22 21:14:10 +00:00
|
|
|
wantNewLocation = true;
|
|
|
|
setPeriod(1);
|
|
|
|
}
|
|
|
|
|
2020-02-06 16:18:20 +00:00
|
|
|
String GPS::getTimeStr()
|
2020-02-06 15:39:21 +00:00
|
|
|
{
|
|
|
|
static char t[12]; // used to sprintf for Serial output
|
|
|
|
|
|
|
|
snprintf(t, sizeof(t), "%02d:%02d:%02d", time.hour(), time.minute(), time.second());
|
|
|
|
return t;
|
|
|
|
}
|