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_NAV_HPPOSLLH = 0x14; //Used for obtaining lat/long/alt in high precision
146
-
constuint8_t UBX_NAV_SVIN = 0x3B; //Used for checking Survey In status
147
-
constuint8_t UBX_NAV_RELPOSNED = 0x3C; //Relative Positioning Information in NED frame
123
+
//The following are used for configuration. Descriptions are from the ZED-F9P Interface Description pg 33-34 and NEO-M9N Interface Description pg 47-48
124
+
constuint8_t UBX_CFG_ANT = 0x13; //Antenna Control Settings. Used to configure the antenna control settings
125
+
constuint8_t UBX_CFG_BATCH = 0x93; //Get/set data batching configuration.
126
+
constuint8_t UBX_CFG_CFG = 0x09; //Clear, Save, and Load Configurations. Used to save current configuration
127
+
constuint8_t UBX_CFG_DAT = 0x06; //Set User-defined Datum or The currently defined Datum
constuint8_t UBX_CFG_PRT = 0x00; //Used to configure port specifics. Polls the configuration for one I/O Port, or Port configuration for UART ports, or Port configuration for USB port, or Port configuration for SPI port, or Port configuration for DDC port
142
+
constuint8_t UBX_CFG_PWR = 0x57; //Put receiver in a defined power state
143
+
constuint8_t UBX_CFG_RATE = 0x08; //Navigation/Measurement Rate Settings. Used to set port baud rates.
144
+
constuint8_t UBX_CFG_RINV = 0x34; //Contents of Remote Inventory
145
+
constuint8_t UBX_CFG_RST = 0x04; //Reset Receiver / Clear Backup Data Structures. Used to reset device.
constuint8_t UBX_CFG_VALDEL = 0x8C; //Used for config of higher version Ublox modules (ie protocol v27 and above). Deletes values corresponding to provided keys/ provided keys with a transaction
152
+
constuint8_t UBX_CFG_VALGET = 0x8B; //Used for config of higher version Ublox modules (ie protocol v27 and above). Configuration Items
153
+
constuint8_t UBX_CFG_VALSET = 0x8A; //Used for config of higher version Ublox modules (ie protocol v27 and above). Sets values corresponding to provided key-value pairs/ provided key-value pairs within a transaction.
148
154
149
155
//The following are used to enable NMEA messages. Descriptions come from the NMEA messages overview in the ZED-F9P Interface Description
150
156
constuint8_t UBX_NMEA_MSB = 0xF0; //All NMEA enable commands have 0xF0 as MSB
//The following are used to configure LOG UBX messages (loggings messages). Descriptions from UBX messages overview (ZED_F9P Interface Description Document page 34)
constuint8_t UBX_MGA_GAL_TIMOFFSET = 0x02; //Galileo GPS time offset assistance
@@ -243,27 +246,27 @@ const uint8_t UBX_MON_PATCH = 0x27; //Output information about installed patches
243
246
constuint8_t UBX_MON_RF = 0x38; //RF information
244
247
constuint8_t UBX_MON_RXBUF = 0x07; //Receiver Buffer Status
245
248
constuint8_t UBX_MON_RXR = 0x21; //Receiver Status Information
246
-
constuint8_t UBX_MON_TXBUF = 0x08; //Transmitter Buffer Status
247
-
constuint8_t UBX_MON_VER = 0x04; //Receiver/Software Version
249
+
constuint8_t UBX_MON_TXBUF = 0x08; //Transmitter Buffer Status. Used for query tx buffer size/state.
250
+
constuint8_t UBX_MON_VER = 0x04; //Receiver/Software Version. Used for obtaining Protocol Version.
248
251
249
252
//The following are used to configure the NAV UBX messages (navigation results messages). Descriptions from UBX messages overview (ZED_F9P Interface Description Document page 35-36)
constuint8_t UBX_NAV_ORB = 0x34; //GNSS Orbit Database Info
258
261
constuint8_t UBX_NAV_POSECEF = 0x01; //Position Solution in ECEF
259
262
constuint8_t UBX_NAV_POSLLH = 0x02; //Geodetic Position Solution
260
-
constuint8_t UBX_NAV_PVT = 0x07; //Navigation Position Velocity Time Solution
263
+
constuint8_t UBX_NAV_PVT = 0x07; //All the things! Position, velocity, time, PDOP, height, h/v accuracies, number of satellites. Navigation Position Velocity Time Solution.
261
264
constuint8_t UBX_NAV_RELPOSNED = 0x3C; //Relative Positioning Information in NED frame
constuint8_t UBX_TIM_VRFY = 0x06; //Sourced Time Verification
291
294
292
295
//The following are used to configure the UPD UBX messages (firmware update messages). Descriptions from UBX messages overview (ZED-F9P Interface Description Document page 36)
293
-
constuint8_t UBX_UPD_SOS = 0x14; //Different based on message size (Poll Backup Fil Restore Status, Create Backup File in Flash, Clear Backup File in Flash, Backup File Creation Acknowledge, System Restored from Backup
294
-
296
+
constuint8_t UBX_UPD_SOS = 0x14; //Poll Backup Fil Restore Status, Create Backup File in Flash, Clear Backup File in Flash, Backup File Creation Acknowledge, System Restored from Backup
0 commit comments