2012-06-09 23:49:03 +02:00
|
|
|
/**
|
|
|
|
******************************************************************************
|
|
|
|
* @addtogroup OpenPilotModules OpenPilot Modules
|
|
|
|
* @{
|
|
|
|
* @addtogroup GSPModule GPS Module
|
|
|
|
* @brief Process GPS information (UBX binary format)
|
|
|
|
* @{
|
|
|
|
*
|
|
|
|
* @file UBX.c
|
|
|
|
* @author The OpenPilot Team, http://www.openpilot.org Copyright (C) 2012.
|
|
|
|
* @brief GPS module, handles GPS and NMEA stream
|
|
|
|
* @see The GNU Public License (GPL) Version 3
|
|
|
|
*
|
|
|
|
*****************************************************************************/
|
|
|
|
/*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful, but
|
|
|
|
* WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
|
|
|
|
* or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
|
|
|
* for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License along
|
|
|
|
* with this program; if not, write to the Free Software Foundation, Inc.,
|
|
|
|
* 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "openpilot.h"
|
|
|
|
#include "pios.h"
|
2012-06-28 09:02:14 +02:00
|
|
|
|
|
|
|
#if defined(PIOS_INCLUDE_GPS_UBX_PARSER)
|
|
|
|
|
2012-06-09 23:49:03 +02:00
|
|
|
#include "UBX.h"
|
2012-07-21 20:42:04 +02:00
|
|
|
#include "GPS.h"
|
2012-06-28 09:02:14 +02:00
|
|
|
|
|
|
|
// parse incoming character stream for messages in UBX binary format
|
|
|
|
|
2012-07-19 22:00:24 +02:00
|
|
|
int parse_ubx_stream (uint8_t c, char *gps_rx_buffer, GPSPositionData *GpsData, struct GPS_RX_STATS *gpsRxStats)
|
2012-06-28 09:02:14 +02:00
|
|
|
{
|
2012-07-19 13:05:55 +02:00
|
|
|
enum proto_states {
|
|
|
|
START,
|
|
|
|
UBX_SY2,
|
|
|
|
UBX_CLASS,
|
|
|
|
UBX_ID,
|
|
|
|
UBX_LEN1,
|
|
|
|
UBX_LEN2,
|
|
|
|
UBX_PAYLOAD,
|
|
|
|
UBX_CHK1,
|
|
|
|
UBX_CHK2,
|
|
|
|
FINISHED
|
|
|
|
};
|
|
|
|
|
2012-06-28 09:02:14 +02:00
|
|
|
static enum proto_states proto_state = START;
|
|
|
|
static uint8_t rx_count = 0;
|
2012-07-13 14:48:11 +02:00
|
|
|
struct UBXPacket *ubx = (struct UBXPacket *)gps_rx_buffer;
|
2012-06-28 09:02:14 +02:00
|
|
|
|
|
|
|
switch (proto_state) {
|
|
|
|
case START: // detect protocol
|
|
|
|
if (c == UBX_SYNC1) // first UBX sync char found
|
|
|
|
proto_state = UBX_SY2;
|
|
|
|
break;
|
|
|
|
case UBX_SY2:
|
|
|
|
if (c == UBX_SYNC2) // second UBX sync char found
|
|
|
|
proto_state = UBX_CLASS;
|
|
|
|
else
|
|
|
|
proto_state = START; // reset state
|
|
|
|
break;
|
|
|
|
case UBX_CLASS:
|
|
|
|
ubx->header.class = c;
|
|
|
|
proto_state = UBX_ID;
|
|
|
|
break;
|
|
|
|
case UBX_ID:
|
|
|
|
ubx->header.id = c;
|
|
|
|
proto_state = UBX_LEN1;
|
|
|
|
break;
|
|
|
|
case UBX_LEN1:
|
|
|
|
ubx->header.len = c;
|
|
|
|
proto_state = UBX_LEN2;
|
|
|
|
break;
|
|
|
|
case UBX_LEN2:
|
|
|
|
ubx->header.len += (c << 8);
|
|
|
|
if (ubx->header.len > sizeof(UBXPayload)) {
|
2012-07-19 22:00:24 +02:00
|
|
|
gpsRxStats->gpsRxOverflow++;
|
2012-06-28 09:02:14 +02:00
|
|
|
proto_state = START;
|
|
|
|
} else {
|
|
|
|
rx_count = 0;
|
|
|
|
proto_state = UBX_PAYLOAD;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case UBX_PAYLOAD:
|
|
|
|
if (rx_count < ubx->header.len) {
|
|
|
|
ubx->payload.payload[rx_count] = c;
|
|
|
|
if (++rx_count == ubx->header.len)
|
|
|
|
proto_state = UBX_CHK1;
|
|
|
|
} else {
|
2012-07-19 22:00:24 +02:00
|
|
|
gpsRxStats->gpsRxOverflow++;
|
2012-06-28 09:02:14 +02:00
|
|
|
proto_state = START;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case UBX_CHK1:
|
|
|
|
ubx->header.ck_a = c;
|
|
|
|
proto_state = UBX_CHK2;
|
|
|
|
break;
|
|
|
|
case UBX_CHK2:
|
|
|
|
ubx->header.ck_b = c;
|
|
|
|
if (checksum_ubx_message(ubx)) { // message complete and valid
|
|
|
|
parse_ubx_message(ubx, GpsData);
|
|
|
|
proto_state = FINISHED;
|
|
|
|
} else {
|
2012-07-19 22:00:24 +02:00
|
|
|
gpsRxStats->gpsRxChkSumError++;
|
2012-06-28 09:02:14 +02:00
|
|
|
proto_state = START;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
default: break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (proto_state == START)
|
|
|
|
return PARSER_ERROR; // parser couldn't use this byte
|
|
|
|
else if (proto_state == FINISHED) {
|
2012-07-19 22:00:24 +02:00
|
|
|
gpsRxStats->gpsRxReceived++;
|
2012-06-28 09:02:14 +02:00
|
|
|
proto_state = START;
|
|
|
|
return PARSER_COMPLETE; // message complete & processed
|
|
|
|
}
|
|
|
|
|
|
|
|
return PARSER_INCOMPLETE; // message not (yet) complete
|
|
|
|
}
|
2012-06-09 23:49:03 +02:00
|
|
|
|
|
|
|
|
|
|
|
// Keep track of various GPS messages needed to make up a single UAVO update
|
|
|
|
// time-of-week timestamp is used to correlate matching messages
|
|
|
|
|
|
|
|
#define POSLLH_RECEIVED (1 << 0)
|
|
|
|
#define STATUS_RECEIVED (1 << 1)
|
|
|
|
#define DOP_RECEIVED (1 << 2)
|
|
|
|
#define VELNED_RECEIVED (1 << 3)
|
|
|
|
#define SOL_RECEIVED (1 << 4)
|
|
|
|
#define ALL_RECEIVED (SOL_RECEIVED | VELNED_RECEIVED | DOP_RECEIVED | POSLLH_RECEIVED)
|
|
|
|
#define NONE_RECEIVED 0
|
|
|
|
|
|
|
|
static struct msgtracker{
|
|
|
|
uint32_t currentTOW; // TOW of the message set currently in progress
|
2012-06-28 09:02:14 +02:00
|
|
|
uint8_t msg_received; // keep track of received message types
|
2012-06-09 23:49:03 +02:00
|
|
|
} msgtracker;
|
|
|
|
|
|
|
|
// Check if a message belongs to the current data set and register it as 'received'
|
|
|
|
bool check_msgtracker (uint32_t tow, uint8_t msg_flag)
|
|
|
|
{
|
2012-06-28 09:02:14 +02:00
|
|
|
|
|
|
|
if (tow > msgtracker.currentTOW ? true // start of a new message set
|
|
|
|
: (msgtracker.currentTOW - tow > 6*24*3600*1000)) { // 6 days, TOW wrap around occured
|
2012-06-09 23:49:03 +02:00
|
|
|
msgtracker.currentTOW = tow;
|
|
|
|
msgtracker.msg_received = NONE_RECEIVED;
|
2012-06-28 09:02:14 +02:00
|
|
|
} else if (tow < msgtracker.currentTOW) // message outdated (don't process)
|
2012-06-09 23:49:03 +02:00
|
|
|
return false;
|
|
|
|
|
2012-06-28 09:02:14 +02:00
|
|
|
msgtracker.msg_received |= msg_flag; // register reception of this msg type
|
2012-06-09 23:49:03 +02:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2012-07-13 14:48:11 +02:00
|
|
|
bool checksum_ubx_message (struct UBXPacket *ubx)
|
2012-06-09 23:49:03 +02:00
|
|
|
{
|
|
|
|
int i;
|
|
|
|
uint8_t ck_a, ck_b;
|
|
|
|
|
|
|
|
ck_a = ubx->header.class;
|
|
|
|
ck_b = ck_a;
|
|
|
|
|
|
|
|
ck_a += ubx->header.id;
|
|
|
|
ck_b += ck_a;
|
|
|
|
|
|
|
|
ck_a += ubx->header.len & 0xff;
|
|
|
|
ck_b += ck_a;
|
|
|
|
|
|
|
|
ck_a += ubx->header.len >> 8;
|
|
|
|
ck_b += ck_a;
|
|
|
|
|
2012-06-28 09:02:14 +02:00
|
|
|
for (i = 0; i < ubx->header.len; i++) {
|
2012-06-09 23:49:03 +02:00
|
|
|
ck_a += ubx->payload.payload[i];
|
|
|
|
ck_b += ck_a;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ubx->header.ck_a == ck_a &&
|
|
|
|
ubx->header.ck_b == ck_b)
|
|
|
|
return true;
|
|
|
|
else
|
|
|
|
return false;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2012-07-13 14:48:11 +02:00
|
|
|
void parse_ubx_nav_posllh (struct UBX_NAV_POSLLH *posllh, GPSPositionData *GpsPosition)
|
2012-06-09 23:49:03 +02:00
|
|
|
{
|
2012-06-28 09:02:14 +02:00
|
|
|
if (check_msgtracker(posllh->iTOW, POSLLH_RECEIVED)) {
|
|
|
|
if (GpsPosition->Status != GPSPOSITION_STATUS_NOFIX) {
|
|
|
|
GpsPosition->Altitude = (float)posllh->hMSL*0.001f;
|
|
|
|
GpsPosition->GeoidSeparation = (float)(posllh->height - posllh->hMSL)*0.001f;
|
|
|
|
GpsPosition->Latitude = posllh->lat;
|
|
|
|
GpsPosition->Longitude = posllh->lon;
|
|
|
|
}
|
2012-06-09 23:49:03 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-07-13 14:48:11 +02:00
|
|
|
void parse_ubx_nav_sol (struct UBX_NAV_SOL *sol, GPSPositionData *GpsPosition)
|
2012-06-09 23:49:03 +02:00
|
|
|
{
|
2012-06-28 09:02:14 +02:00
|
|
|
if (check_msgtracker(sol->iTOW, SOL_RECEIVED)) {
|
|
|
|
GpsPosition->Satellites = sol->numSV;
|
|
|
|
|
|
|
|
if (sol->flags & STATUS_FLAGS_GPSFIX_OK) {
|
|
|
|
switch (sol->gpsFix) {
|
|
|
|
case STATUS_GPSFIX_2DFIX:
|
|
|
|
GpsPosition->Status = GPSPOSITION_STATUS_FIX2D;
|
|
|
|
break;
|
|
|
|
case STATUS_GPSFIX_3DFIX:
|
|
|
|
GpsPosition->Status = GPSPOSITION_STATUS_FIX3D;
|
|
|
|
break;
|
|
|
|
default: GpsPosition->Status = GPSPOSITION_STATUS_NOFIX;
|
|
|
|
}
|
2012-06-09 23:49:03 +02:00
|
|
|
}
|
2012-06-28 09:02:14 +02:00
|
|
|
else // fix is not valid so we make sure to treat is as NOFIX
|
|
|
|
GpsPosition->Status = GPSPOSITION_STATUS_NOFIX;
|
2012-06-09 23:49:03 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-07-13 14:48:11 +02:00
|
|
|
void parse_ubx_nav_dop (struct UBX_NAV_DOP *dop, GPSPositionData *GpsPosition)
|
2012-06-09 23:49:03 +02:00
|
|
|
{
|
2012-06-28 09:02:14 +02:00
|
|
|
if (check_msgtracker(dop->iTOW, DOP_RECEIVED)) {
|
|
|
|
GpsPosition->HDOP = (float)dop->hDOP * 0.01f;
|
|
|
|
GpsPosition->VDOP = (float)dop->vDOP * 0.01f;
|
|
|
|
GpsPosition->PDOP = (float)dop->pDOP * 0.01f;
|
2012-06-09 23:49:03 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-07-13 14:48:11 +02:00
|
|
|
void parse_ubx_nav_velned (struct UBX_NAV_VELNED *velned, GPSPositionData *GpsPosition)
|
2012-06-09 23:49:03 +02:00
|
|
|
{
|
|
|
|
GPSVelocityData GpsVelocity;
|
|
|
|
|
2012-06-28 09:02:14 +02:00
|
|
|
if (check_msgtracker(velned->iTOW, VELNED_RECEIVED)) {
|
|
|
|
if (GpsPosition->Status != GPSPOSITION_STATUS_NOFIX) {
|
|
|
|
GpsVelocity.North = (float)velned->velN/100.0f;
|
|
|
|
GpsVelocity.East = (float)velned->velE/100.0f;
|
|
|
|
GpsVelocity.Down = (float)velned->velD/100.0f;
|
|
|
|
GPSVelocitySet(&GpsVelocity);
|
|
|
|
GpsPosition->Groundspeed = (float)velned->gSpeed * 0.01f;
|
|
|
|
GpsPosition->Heading = (float)velned->heading * 1.0e-5f;
|
|
|
|
}
|
2012-06-09 23:49:03 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-06-28 09:02:14 +02:00
|
|
|
#if !defined(PIOS_GPS_MINIMAL)
|
2012-07-22 08:17:06 +02:00
|
|
|
void parse_ubx_nav_timeutc (struct UBX_NAV_TIMEUTC *timeutc)
|
2012-06-09 23:49:03 +02:00
|
|
|
{
|
2012-06-28 09:02:14 +02:00
|
|
|
if (!(timeutc->valid & TIMEUTC_VALIDUTC))
|
2012-06-09 23:49:03 +02:00
|
|
|
return;
|
|
|
|
|
2012-06-28 09:02:14 +02:00
|
|
|
GPSTimeData GpsTime;
|
2012-06-09 23:49:03 +02:00
|
|
|
|
2012-06-28 09:02:14 +02:00
|
|
|
GpsTime.Year = timeutc->year;
|
|
|
|
GpsTime.Month = timeutc->month;
|
|
|
|
GpsTime.Day = timeutc->day;
|
|
|
|
GpsTime.Hour = timeutc->hour;
|
|
|
|
GpsTime.Minute = timeutc->min;
|
|
|
|
GpsTime.Second = timeutc->sec;
|
2012-06-09 23:49:03 +02:00
|
|
|
|
2012-06-28 09:02:14 +02:00
|
|
|
GPSTimeSet(&GpsTime);
|
2012-06-09 23:49:03 +02:00
|
|
|
}
|
2012-06-28 09:02:14 +02:00
|
|
|
#endif
|
2012-06-09 23:49:03 +02:00
|
|
|
|
2012-06-28 09:02:14 +02:00
|
|
|
#if !defined(PIOS_GPS_MINIMAL)
|
2012-07-22 08:17:06 +02:00
|
|
|
void parse_ubx_nav_svinfo (struct UBX_NAV_SVINFO *svinfo)
|
2012-06-09 23:49:03 +02:00
|
|
|
{
|
|
|
|
uint8_t chan;
|
2012-06-28 09:02:14 +02:00
|
|
|
GPSSatellitesData svdata;
|
|
|
|
|
2012-06-09 23:49:03 +02:00
|
|
|
svdata.SatsInView = 0;
|
2012-06-28 09:02:14 +02:00
|
|
|
for (chan = 0; chan < svinfo->numCh; chan++) {
|
2012-06-30 21:18:12 +02:00
|
|
|
if (svdata.SatsInView < GPSSATELLITES_PRN_NUMELEM) {
|
2012-06-28 09:02:14 +02:00
|
|
|
svdata.Azimuth[svdata.SatsInView] = (float)svinfo->sv[chan].azim;
|
|
|
|
svdata.Elevation[svdata.SatsInView] = (float)svinfo->sv[chan].elev;
|
|
|
|
svdata.PRN[svdata.SatsInView] = svinfo->sv[chan].svid;
|
|
|
|
svdata.SNR[svdata.SatsInView] = svinfo->sv[chan].cno;
|
2012-06-09 23:49:03 +02:00
|
|
|
svdata.SatsInView++;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
// fill remaining slots (if any)
|
2012-06-28 09:02:14 +02:00
|
|
|
for (chan = svdata.SatsInView; chan < GPSSATELLITES_PRN_NUMELEM; chan++) {
|
2012-06-09 23:49:03 +02:00
|
|
|
svdata.Azimuth[chan] = (float)0.0f;
|
|
|
|
svdata.Elevation[chan] = (float)0.0f;
|
|
|
|
svdata.PRN[chan] = 0;
|
|
|
|
svdata.SNR[chan] = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
GPSSatellitesSet(&svdata);
|
|
|
|
}
|
2012-06-28 09:02:14 +02:00
|
|
|
#endif
|
2012-06-09 23:49:03 +02:00
|
|
|
|
|
|
|
// UBX message parser
|
2012-06-28 09:02:14 +02:00
|
|
|
// returns UAVObjectID if a UAVObject structure is ready for further processing
|
2012-06-09 23:49:03 +02:00
|
|
|
|
2012-07-13 14:48:11 +02:00
|
|
|
uint32_t parse_ubx_message (struct UBXPacket *ubx, GPSPositionData *GpsPosition)
|
2012-06-09 23:49:03 +02:00
|
|
|
{
|
2012-06-28 09:02:14 +02:00
|
|
|
uint32_t id = 0;
|
2012-06-09 23:49:03 +02:00
|
|
|
|
2012-06-28 09:02:14 +02:00
|
|
|
switch (ubx->header.class) {
|
2012-06-09 23:49:03 +02:00
|
|
|
case UBX_CLASS_NAV:
|
2012-06-28 09:02:14 +02:00
|
|
|
switch (ubx->header.id) {
|
2012-06-09 23:49:03 +02:00
|
|
|
case UBX_ID_POSLLH:
|
2012-06-28 09:02:14 +02:00
|
|
|
parse_ubx_nav_posllh (&ubx->payload.nav_posllh, GpsPosition);
|
2012-06-09 23:49:03 +02:00
|
|
|
break;
|
|
|
|
case UBX_ID_DOP:
|
2012-06-28 09:02:14 +02:00
|
|
|
parse_ubx_nav_dop (&ubx->payload.nav_dop, GpsPosition);
|
2012-06-09 23:49:03 +02:00
|
|
|
break;
|
|
|
|
case UBX_ID_SOL:
|
2012-06-28 09:02:14 +02:00
|
|
|
parse_ubx_nav_sol (&ubx->payload.nav_sol, GpsPosition);
|
2012-06-09 23:49:03 +02:00
|
|
|
break;
|
|
|
|
case UBX_ID_VELNED:
|
2012-06-28 09:02:14 +02:00
|
|
|
parse_ubx_nav_velned (&ubx->payload.nav_velned, GpsPosition);
|
2012-06-09 23:49:03 +02:00
|
|
|
break;
|
2012-06-28 09:02:14 +02:00
|
|
|
#if !defined(PIOS_GPS_MINIMAL)
|
2012-06-09 23:49:03 +02:00
|
|
|
case UBX_ID_TIMEUTC:
|
2012-06-28 09:02:14 +02:00
|
|
|
parse_ubx_nav_timeutc (&ubx->payload.nav_timeutc);
|
2012-06-09 23:49:03 +02:00
|
|
|
break;
|
|
|
|
case UBX_ID_SVINFO:
|
2012-06-28 09:02:14 +02:00
|
|
|
parse_ubx_nav_svinfo (&ubx->payload.nav_svinfo);
|
2012-06-09 23:49:03 +02:00
|
|
|
break;
|
2012-06-28 09:02:14 +02:00
|
|
|
#endif
|
2012-06-09 23:49:03 +02:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
2012-06-28 09:02:14 +02:00
|
|
|
if (msgtracker.msg_received == ALL_RECEIVED) {
|
|
|
|
GPSPositionSet(GpsPosition);
|
2012-06-09 23:49:03 +02:00
|
|
|
msgtracker.msg_received = NONE_RECEIVED;
|
2012-06-28 09:02:14 +02:00
|
|
|
id = GPSPOSITION_OBJID;
|
2012-06-09 23:49:03 +02:00
|
|
|
}
|
2012-06-28 09:02:14 +02:00
|
|
|
return id;
|
2012-06-09 23:49:03 +02:00
|
|
|
}
|
|
|
|
|
2012-06-28 09:02:14 +02:00
|
|
|
#endif // PIOS_INCLUDE_GPS_UBX_PARSER
|
2012-06-09 23:49:03 +02:00
|
|
|
|