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
Copy file name to clipboardExpand all lines: src/SparkFun_u-blox_GNSS_Arduino_Library.h
+4Lines changed: 4 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -1159,6 +1159,8 @@ class SFE_UBLOX_GNSS
1159
1159
boolsetRXMPMPcallbackPtr(void (*callbackPointerPtr)(UBX_RXM_PMP_data_t *)); // Callback receives a pointer to the data, instead of _all_ the data. Much kinder on the stack!
1160
1160
boolsetRXMPMPmessageCallbackPtr(void (*callbackPointerPtr)(UBX_RXM_PMP_message_data_t *)); // Use this if you want all of the PMP message (including sync chars, checksum, etc.) to push to a GNSS
boolsetAutoRXMSFRBX(bool enabled, uint16_t maxWait = defaultMaxWait); // Enable/disable automatic RXM SFRBX reports at the navigation frequency
1164
1166
boolsetAutoRXMSFRBX(bool enabled, bool implicitUpdate, uint16_t maxWait = defaultMaxWait); // Enable/disable automatic RXM SFRBX 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
@@ -1512,6 +1514,7 @@ class SFE_UBLOX_GNSS
1512
1514
1513
1515
UBX_RXM_PMP_t *packetUBXRXMPMP = NULL; // Pointer to struct. RAM will be allocated for this if/when necessary
1514
1516
UBX_RXM_PMP_message_t *packetUBXRXMPMPmessage = NULL; // Pointer to struct. RAM will be allocated for this if/when necessary
1517
+
UBX_RXM_COR_t *packetUBXRXMCOR = NULL; // Pointer to struct. RAM will be allocated for this if/when necessary
1515
1518
UBX_RXM_SFRBX_t *packetUBXRXMSFRBX = NULL; // Pointer to struct. RAM will be allocated for this if/when necessary
1516
1519
UBX_RXM_RAWX_t *packetUBXRXMRAWX = NULL; // Pointer to struct. RAM will be allocated for this if/when necessary
1517
1520
@@ -1610,6 +1613,7 @@ class SFE_UBLOX_GNSS
1610
1613
boolinitPacketUBXNAVAOPSTATUS(); // Allocate RAM for packetUBXNAVAOPSTATUS and initialize it
1611
1614
boolinitPacketUBXRXMPMP(); // Allocate RAM for packetUBXRXMPMP and initialize it
1612
1615
boolinitPacketUBXRXMPMPmessage(); // Allocate RAM for packetUBXRXMPMPRaw and initialize it
1616
+
boolinitPacketUBXRXMCOR(); // Allocate RAM for packetUBXRXMCOR and initialize it
1613
1617
boolinitPacketUBXRXMSFRBX(); // Allocate RAM for packetUBXRXMSFRBX and initialize it
1614
1618
boolinitPacketUBXRXMRAWX(); // Allocate RAM for packetUBXRXMRAWX and initialize it
1615
1619
boolinitPacketUBXCFGPRT(); // Allocate RAM for packetUBXCFGPRT and initialize it
0 commit comments