You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jan 28, 2021. It is now read-only.
constuint8_t UBX_CFG_PRT = 0x00; //Used to configure port specifics
99
100
constuint8_t UBX_CFG_RST = 0x04; //Used to reset device
@@ -118,6 +119,17 @@ const uint8_t UBX_NAV_HPPOSLLH = 0x14; //Used for obtaining lat/long/alt in hig
118
119
constuint8_t UBX_NAV_SVIN = 0x3B; //Used for checking Survey In status
119
120
constuint8_t UBX_NAV_RELPOSNED = 0x3C; //Relative Positioning Information in NED frame
120
121
122
+
constuint8_t UBX_NMEA_GGA = 0x00;
123
+
constuint8_t UBX_NMEA_GLL = 0x01;
124
+
constuint8_t UBX_NMEA_GNS = 0x0D;
125
+
constuint8_t UBX_NMEA_GRS = 0x06;
126
+
constuint8_t UBX_NMEA_GSA = 0x02;
127
+
constuint8_t UBX_NMEA_GST = 0x07;
128
+
constuint8_t UBX_NMEA_GSV = 0x03;
129
+
constuint8_t UBX_NMEA_RMC = 0x04;
130
+
constuint8_t UBX_NMEA_VTG = 0x05;
131
+
constuint8_t UBX_NMEA_ZDA = 0x08;
132
+
121
133
constuint8_t UBX_MON_VER = 0x04; //Used for obtaining Protocol Version
122
134
constuint8_t UBX_MON_TXBUF = 0x08; //Used for query tx buffer size/state
123
135
@@ -258,6 +270,7 @@ class SFE_UBLOX_GPS
258
270
boolean waitForResponse(uint8_t requestedClass, uint8_t requestedID, uint16_t maxTime = 250); //Poll the module until and ack is received
259
271
260
272
boolean assumeAutoPVT(boolean enabled, boolean implicitUpdate = true); //In case no config access to the GPS is possible and PVT is send cyclically already
boolean setAutoPVT(boolean enabled, uint16_t maxWait = 250); //Enable/disable automatic PVT reports at the navigation frequency
262
275
boolean getPVT(uint16_t maxWait = 1000); //Query module for latest group of datums and load global vars: lat, long, alt, speed, SIV, accuracies, etc. If autoPVT is disabled, performs an explicit poll and waits, if enabled does not block. Retruns true if new PVT is available.
263
276
boolean setAutoPVT(boolean enabled, boolean implicitUpdate, uint16_t maxWait = 250); //Enable/disable automatic PVT reports at the navigation frequency, with implicitUpdate == false accessing stale data will not issue parsing of data in the rxbuffer of your interface, instead you have to call checkUblox when you want to perform an update
0 commit comments