1
0
mirror of https://github.com/thooge/esp32-nmea2000-obp60.git synced 2025-12-13 05:53:06 +01:00

send/receive gga

This commit is contained in:
andreas
2021-11-12 19:25:57 +01:00
parent 3cd9c5cea6
commit c12ac513ba
3 changed files with 51 additions and 1 deletions

View File

@@ -20,6 +20,7 @@ class GwBoatItemBase{
GWSC(formatDepth);
GWSC(kelvinToC);
GWSC(mtr2nm);
GWSC(formatDop);
typedef std::vector<GwBoatItemBase*> GwBoatItemMap;
protected:
unsigned long lastSet=0;
@@ -128,6 +129,8 @@ class GwBoatData{
GWBOATDATA(double,MagneticHeading,4000,formatCourse)
GWBOATDATA(double,Variation,4000,formatCourse)
GWBOATDATA(double,Deviation,4000,formatCourse)
GWBOATDATA(double,HDOP,4000,formatDop)
GWBOATDATA(double,PDOP,4000,formatDop)
GWBOATDATA(double,RudderPosition,4000,formatCourse)
GWBOATDATA(double,Latitude,4000,formatLatitude)
GWBOATDATA(double,Longitude,4000,formatLongitude)