mirror of https://github.com/wb2osz/direwolf.git
More comments about GNSS.
This commit is contained in:
parent
d828a8abe3
commit
7fc9f31fbc
16
dwgpsnmea.c
16
dwgpsnmea.c
|
@ -26,6 +26,21 @@
|
||||||
*
|
*
|
||||||
* Description: This version is available for all operating systems.
|
* Description: This version is available for all operating systems.
|
||||||
*
|
*
|
||||||
|
*
|
||||||
|
* TODO: GPS is no longer the only game in town.
|
||||||
|
* "GNSS" is often seen as a more general term to include
|
||||||
|
* other similar systems. Some receivers will receive
|
||||||
|
* multiple types at the same time and combine them
|
||||||
|
* for greater accuracy and reliability.
|
||||||
|
*
|
||||||
|
* We can now see NMEA sentences with other "Talker IDs."
|
||||||
|
*
|
||||||
|
* $GPxxx = GPS
|
||||||
|
* $GLxxx = GLONAS
|
||||||
|
* $GAxxx = Galileo
|
||||||
|
* $GBxxx = BeiDou
|
||||||
|
* $GNxxx = Any combination
|
||||||
|
*
|
||||||
*---------------------------------------------------------------*/
|
*---------------------------------------------------------------*/
|
||||||
|
|
||||||
|
|
||||||
|
@ -693,6 +708,7 @@ dwfix_t dwgpsnmea_gpgga (char *sentence, int quiet, double *odlat, double *odlon
|
||||||
return (DWFIX_ERROR);
|
return (DWFIX_ERROR);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
// TODO: num sat...
|
// TODO: num sat...
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
|
Loading…
Reference in New Issue