2010-09-06 17:18:32 -03:00
|
|
|
// -*- tab-width: 4; Mode: C++; c-basic-offset: 4; indent-tabs-mode: t -*-
|
|
|
|
|
2012-06-08 03:40:59 -03:00
|
|
|
#include <FastSerial.h>
|
|
|
|
|
|
|
|
#define GPS_DEBUGGING 1
|
|
|
|
|
|
|
|
#if GPS_DEBUGGING
|
|
|
|
#include <FastSerial.h>
|
|
|
|
# define Debug(fmt, args...) do {Serial.printf("%s:%d: " fmt "\n", __FUNCTION__, __LINE__ , ##args); delay(0); } while(0)
|
|
|
|
#else
|
|
|
|
# define Debug(fmt, args...)
|
|
|
|
#endif
|
|
|
|
|
2010-09-06 17:18:32 -03:00
|
|
|
#include "GPS.h"
|
2012-01-27 23:25:47 -04:00
|
|
|
#if defined(ARDUINO) && ARDUINO >= 100
|
|
|
|
#include "Arduino.h"
|
|
|
|
#else
|
|
|
|
#include "WProgram.h"
|
|
|
|
#endif
|
2010-09-06 17:18:32 -03:00
|
|
|
|
2010-12-24 02:35:09 -04:00
|
|
|
void
|
|
|
|
GPS::update(void)
|
2010-10-17 17:13:53 -03:00
|
|
|
{
|
2011-10-28 15:52:50 -03:00
|
|
|
bool result;
|
2012-06-08 03:40:59 -03:00
|
|
|
uint32_t tnow;
|
2011-10-28 15:52:50 -03:00
|
|
|
|
|
|
|
// call the GPS driver to process incoming data
|
|
|
|
result = read();
|
|
|
|
|
2012-06-08 03:40:59 -03:00
|
|
|
tnow = millis();
|
|
|
|
|
2011-10-28 15:52:50 -03:00
|
|
|
// if we did not get a message, and the idle timer has expired, re-init
|
|
|
|
if (!result) {
|
2012-06-08 03:40:59 -03:00
|
|
|
if ((tnow - _idleTimer) > idleTimeout) {
|
|
|
|
Debug("gps read timeout %lu %lu", (unsigned long)tnow, (unsigned long)_idleTimer);
|
2011-10-28 15:52:50 -03:00
|
|
|
_status = NO_GPS;
|
|
|
|
|
|
|
|
init();
|
|
|
|
// reset the idle timer
|
2012-06-08 03:40:59 -03:00
|
|
|
_idleTimer = tnow;
|
2011-10-28 15:52:50 -03:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
// we got a message, update our status correspondingly
|
|
|
|
_status = fix ? GPS_OK : NO_FIX;
|
|
|
|
|
|
|
|
valid_read = true;
|
|
|
|
new_data = true;
|
|
|
|
|
|
|
|
// reset the idle timer
|
2012-06-08 03:40:59 -03:00
|
|
|
_idleTimer = tnow;
|
2012-03-04 05:33:12 -04:00
|
|
|
|
|
|
|
if (_status == GPS_OK) {
|
|
|
|
// update our acceleration
|
2012-03-07 00:15:13 -04:00
|
|
|
float deltat = 1.0e-3 * (_idleTimer - last_fix_time);
|
2012-03-04 05:33:12 -04:00
|
|
|
float deltav = 1.0e-2 * ((float)ground_speed - (float)_last_ground_speed);
|
2012-03-07 00:15:13 -04:00
|
|
|
last_fix_time = _idleTimer;
|
2012-03-04 05:33:12 -04:00
|
|
|
_last_ground_speed = ground_speed;
|
|
|
|
|
|
|
|
if (deltat > 2.0 || deltat == 0) {
|
|
|
|
// we didn't get a fix for 2 seconds - set
|
|
|
|
// acceleration to zero, as the estimate will be too
|
|
|
|
// far out
|
|
|
|
_acceleration = 0;
|
|
|
|
} else {
|
|
|
|
// calculate a mildly smoothed acceleration value
|
|
|
|
_acceleration = (0.7 * _acceleration) + (0.3 * (deltav/deltat));
|
|
|
|
}
|
|
|
|
}
|
2011-10-28 15:52:50 -03:00
|
|
|
}
|
2010-10-17 17:13:53 -03:00
|
|
|
}
|
2010-12-19 09:24:29 -04:00
|
|
|
|
2011-06-16 13:33:08 -03:00
|
|
|
void
|
2011-05-04 16:12:27 -03:00
|
|
|
GPS::setHIL(long _time, float _latitude, float _longitude, float _altitude,
|
|
|
|
float _ground_speed, float _ground_course, float _speed_3d, uint8_t _num_sats)
|
2011-02-19 14:33:42 -04:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2010-12-24 02:35:09 -04:00
|
|
|
// XXX this is probably the wrong way to do it, too
|
2010-12-19 09:24:29 -04:00
|
|
|
void
|
2010-12-24 02:35:09 -04:00
|
|
|
GPS::_error(const char *msg)
|
2010-12-19 09:24:29 -04:00
|
|
|
{
|
2011-10-28 15:52:50 -03:00
|
|
|
Serial.println(msg);
|
2010-12-19 09:24:29 -04:00
|
|
|
}
|