Skip to content

Commit b2f5f0f

Browse files
authored
Merge pull request #168 from sparkfun/release_candidate
v2.2.20
2 parents 89ecefc + e7e82f7 commit b2f5f0f

File tree

3 files changed

+114
-35
lines changed

3 files changed

+114
-35
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,105 @@
1+
/*
2+
Polling RXM RAWX reports over I2C
3+
By: Paul Clark
4+
SparkFun Electronics
5+
Date: November 25th, 2022
6+
License: MIT. See license file for more information but you can
7+
basically do whatever you want with this code.
8+
9+
This example shows how to poll RXM RAWX reports from the u-blox module.
10+
11+
Feel like supporting open source hardware?
12+
Buy a board from SparkFun!
13+
ZED-F9P RTK2: https://www.sparkfun.com/products/15136
14+
15+
Hardware Connections:
16+
Plug a Qwiic cable into the GPS and a BlackBoard
17+
If you don't have a platform with a Qwiic connection use the SparkFun Qwiic Breadboard Jumper (https://www.sparkfun.com/products/14425)
18+
Open the serial monitor at 115200 baud to see the output
19+
*/
20+
21+
#include <Wire.h> //Needed for I2C to GPS
22+
23+
#include <SparkFun_u-blox_GNSS_Arduino_Library.h> //http://librarymanager/All#SparkFun_u-blox_GNSS
24+
SFE_UBLOX_GNSS myGNSS;
25+
26+
void setup()
27+
{
28+
Serial.begin(115200);
29+
while (!Serial); //Wait for user to open terminal
30+
Serial.println("SparkFun u-blox Example");
31+
32+
Wire.begin();
33+
34+
//myGNSS.enableDebugging(); // Uncomment this line to enable helpful debug messages on Serial
35+
36+
// Because we are polling RAWX, we need to increase the size of packetCfg.payload
37+
// RAWX packets can be over 2K bytes so let's allocate 3K bytes
38+
if (!myGNSS.setPacketCfgPayloadSize(3000))
39+
{
40+
Serial.println(F("setPacketCfgPayloadSize failed. You will not be able to poll RAWX data. Freezing."));
41+
while (1); // Do nothing more
42+
}
43+
44+
while (myGNSS.begin() == false) //Connect to the u-blox module using Wire port
45+
{
46+
Serial.println(F("u-blox GNSS not detected at default I2C address. Retrying..."));
47+
delay(1000);
48+
}
49+
50+
Serial.println(F("u-blox GNSS detected."));
51+
52+
myGNSS.setI2COutput(COM_TYPE_UBX); //Set the I2C port to output UBX only (turn off NMEA noise)
53+
myGNSS.saveConfigSelective(VAL_CFG_SUBSEC_IOPORT); //Save (only) the communications port settings to flash and BBR
54+
55+
myGNSS.setNavigationFrequency(1); //Produce one solution per second (RAWX produces a _lot_ of data!)
56+
}
57+
58+
void loop()
59+
{
60+
if (myGNSS.getRXMRAWX()) // Poll RAWX data
61+
{
62+
// Print the RAWX data, using a pointer to the RXM RAWX data stored in packetUBXRXMRAWX
63+
printRAWX(&myGNSS.packetUBXRXMRAWX->data);
64+
}
65+
}
66+
67+
void printRAWX(UBX_RXM_RAWX_data_t *ubxDataStruct)
68+
{
69+
Serial.println();
70+
71+
Serial.print(F("New RAWX data received. It contains "));
72+
Serial.print(ubxDataStruct->header.numMeas); // Print numMeas (Number of measurements / blocks)
73+
Serial.println(F(" data blocks:"));
74+
75+
for (uint8_t block = 0; block < ubxDataStruct->header.numMeas; block++) // For each block
76+
{
77+
Serial.print(F("GNSS ID: "));
78+
if (ubxDataStruct->blocks[block].gnssId < 100) Serial.print(F(" ")); // Align the gnssId
79+
if (ubxDataStruct->blocks[block].gnssId < 10) Serial.print(F(" ")); // Align the gnssId
80+
Serial.print(ubxDataStruct->blocks[block].gnssId);
81+
Serial.print(F(" SV ID: "));
82+
if (ubxDataStruct->blocks[block].svId < 100) Serial.print(F(" ")); // Align the svId
83+
if (ubxDataStruct->blocks[block].svId < 10) Serial.print(F(" ")); // Align the svId
84+
Serial.print(ubxDataStruct->blocks[block].svId);
85+
86+
if (sizeof(double) == 8) // Check if our processor supports 64-bit double
87+
{
88+
// Convert prMes from uint8_t[8] to 64-bit double
89+
// prMes is little-endian
90+
double pseudorange;
91+
memcpy(&pseudorange, &ubxDataStruct->blocks[block].prMes, 8);
92+
Serial.print(F(" PR: "));
93+
Serial.print(pseudorange, 3);
94+
95+
// Convert cpMes from uint8_t[8] to 64-bit double
96+
// cpMes is little-endian
97+
double carrierPhase;
98+
memcpy(&carrierPhase, &ubxDataStruct->blocks[block].cpMes, 8);
99+
Serial.print(F(" m CP: "));
100+
Serial.print(carrierPhase, 3);
101+
Serial.print(F(" cycles"));
102+
}
103+
Serial.println();
104+
}
105+
}

library.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name=SparkFun u-blox GNSS Arduino Library
2-
version=2.2.19
2+
version=2.2.20
33
author=SparkFun Electronics <[email protected]>
44
maintainer=SparkFun Electronics <sparkfun.com>
55
sentence=Library for I2C, Serial and SPI Communication with u-blox GNSS modules<br/><br/>

src/SparkFun_u-blox_GNSS_Arduino_Library.cpp

+8-34
Original file line numberDiff line numberDiff line change
@@ -10377,10 +10377,7 @@ bool SFE_UBLOX_GNSS::getNAVEOE(uint16_t maxWait)
1037710377
}
1037810378
else
1037910379
{
10380-
// if (_printDebug == true)
10381-
// {
10382-
// _debugSerial->println(F("getEOE: Polling"));
10383-
// }
10380+
// Note to self: NAV-EOE is "Periodic" (only). Not sure if it can be polled?
1038410381

1038510382
// The GPS is not automatically reporting navigation position so we have to poll explicitly
1038610383
packetCfg.cls = UBX_CLASS_NAV;
@@ -10396,18 +10393,9 @@ bool SFE_UBLOX_GNSS::getNAVEOE(uint16_t maxWait)
1039610393

1039710394
if (retVal == SFE_UBLOX_STATUS_DATA_OVERWRITTEN)
1039810395
{
10399-
// if (_printDebug == true)
10400-
// {
10401-
// _debugSerial->println(F("getEOE: data in packetCfg was OVERWRITTEN by another message (but that's OK)"));
10402-
// }
1040310396
return (true);
1040410397
}
1040510398

10406-
// if (_printDebug == true)
10407-
// {
10408-
// _debugSerial->print(F("getEOE retVal: "));
10409-
// _debugSerial->println(statusString(retVal));
10410-
// }
1041110399
return (false);
1041210400
}
1041310401
}
@@ -13487,14 +13475,14 @@ bool SFE_UBLOX_GNSS::initPacketUBXRXMCOR()
1348713475
bool SFE_UBLOX_GNSS::getRXMSFRBX(uint16_t maxWait)
1348813476
{
1348913477
if (packetUBXRXMSFRBX == NULL)
13490-
initPacketUBXRXMSFRBX(); // Check that RAM has been allocated for the TM2 data
13478+
initPacketUBXRXMSFRBX(); // Check that RAM has been allocated for the SFRBX data
1349113479
if (packetUBXRXMSFRBX == NULL) // Bail if the RAM allocation failed
1349213480
return (false);
1349313481

1349413482
if (packetUBXRXMSFRBX->automaticFlags.flags.bits.automatic && packetUBXRXMSFRBX->automaticFlags.flags.bits.implicitUpdate)
1349513483
{
1349613484
// The GPS is automatically reporting, we just check whether we got unread data
13497-
checkUbloxInternal(&packetCfg, UBX_CLASS_TIM, UBX_TIM_TM2);
13485+
checkUbloxInternal(&packetCfg, UBX_CLASS_RXM, UBX_RXM_SFRBX);
1349813486
return packetUBXRXMSFRBX->moduleQueried;
1349913487
}
1350013488
else if (packetUBXRXMSFRBX->automaticFlags.flags.bits.automatic && !packetUBXRXMSFRBX->automaticFlags.flags.bits.implicitUpdate)
@@ -13504,23 +13492,9 @@ bool SFE_UBLOX_GNSS::getRXMSFRBX(uint16_t maxWait)
1350413492
}
1350513493
else
1350613494
{
13507-
// The GPS is not automatically reporting navigation position so we have to poll explicitly
13508-
packetCfg.cls = UBX_CLASS_RXM;
13509-
packetCfg.id = UBX_RXM_SFRBX;
13510-
packetCfg.len = 0;
13511-
packetCfg.startingSpot = 0;
13512-
13513-
// The data is parsed as part of processing the response
13514-
sfe_ublox_status_e retVal = sendCommand(&packetCfg, maxWait);
13515-
13516-
if (retVal == SFE_UBLOX_STATUS_DATA_RECEIVED)
13517-
return (true);
13518-
13519-
if (retVal == SFE_UBLOX_STATUS_DATA_OVERWRITTEN)
13520-
{
13521-
return (true);
13522-
}
13523-
13495+
// SFRBX is output-only. It cannot be polled...
13496+
// Strictly, getRXMSFRBX should be deprecated. But, to keep the library backward compatible, return(false) here.
13497+
// See issue #167 for details
1352413498
return (false);
1352513499
}
1352613500
}
@@ -13679,14 +13653,14 @@ void SFE_UBLOX_GNSS::logRXMSFRBX(bool enabled)
1367913653
bool SFE_UBLOX_GNSS::getRXMRAWX(uint16_t maxWait)
1368013654
{
1368113655
if (packetUBXRXMRAWX == NULL)
13682-
initPacketUBXRXMRAWX(); // Check that RAM has been allocated for the TM2 data
13656+
initPacketUBXRXMRAWX(); // Check that RAM has been allocated for the RAWX data
1368313657
if (packetUBXRXMRAWX == NULL) // Bail if the RAM allocation failed
1368413658
return (false);
1368513659

1368613660
if (packetUBXRXMRAWX->automaticFlags.flags.bits.automatic && packetUBXRXMRAWX->automaticFlags.flags.bits.implicitUpdate)
1368713661
{
1368813662
// The GPS is automatically reporting, we just check whether we got unread data
13689-
checkUbloxInternal(&packetCfg, UBX_CLASS_TIM, UBX_TIM_TM2);
13663+
checkUbloxInternal(&packetCfg, UBX_CLASS_RXM, UBX_RXM_RAWX);
1369013664
return packetUBXRXMRAWX->moduleQueried;
1369113665
}
1369213666
else if (packetUBXRXMRAWX->automaticFlags.flags.bits.automatic && !packetUBXRXMRAWX->automaticFlags.flags.bits.implicitUpdate)

0 commit comments

Comments
 (0)