Skip to content

Commit f8047a5

Browse files
authored
Merge pull request #218 from sparkfun/release_candidate
v2.2.26 - resolve issue #217
2 parents c8fba93 + a01eef6 commit f8047a5

3 files changed

+24
-16
lines changed

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.25
2+
version=2.2.26
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

+22-14
Original file line numberDiff line numberDiff line change
@@ -7725,25 +7725,33 @@ bool SFE_UBLOX_GNSS::getProtocolVersion(uint16_t maxWait)
77257725
// }
77267726

77277727
// We will step through the payload looking at each extension field of 30 bytes
7728-
for (uint8_t extensionNumber = 0; extensionNumber < 10; extensionNumber++)
7728+
char *ptr;
7729+
for (uint8_t extensionNumber = 0; extensionNumber < ((packetCfg.len - 40) / 30); extensionNumber++)
77297730
{
7730-
// Now we need to find "PROTVER=18.00" in the incoming byte stream
7731-
if ((payloadCfg[(30 * extensionNumber) + 0] == 'P') && (payloadCfg[(30 * extensionNumber) + 6] == 'R'))
7731+
ptr = strstr((const char *)&payloadCfg[(30 * extensionNumber)], "PROTVER="); // Check for PROTVER (should be in extension 2)
7732+
if (ptr != nullptr)
77327733
{
7733-
moduleSWVersion->versionHigh = (payloadCfg[(30 * extensionNumber) + 8] - '0') * 10 + (payloadCfg[(30 * extensionNumber) + 9] - '0'); // Convert '18' to 18
7734-
moduleSWVersion->versionLow = (payloadCfg[(30 * extensionNumber) + 11] - '0') * 10 + (payloadCfg[(30 * extensionNumber) + 12] - '0'); // Convert '00' to 00
7735-
moduleSWVersion->moduleQueried = true; // Mark this data as new
7734+
ptr += strlen("PROTVER="); // Point to the protocol version
7735+
int protHi = 0;
7736+
int protLo = 0;
7737+
int scanned = sscanf(ptr, "%d.%d", &protHi, &protLo);
7738+
if (scanned == 2) // Check we extracted the firmware version successfully
7739+
{
7740+
moduleSWVersion->versionHigh = protHi;
7741+
moduleSWVersion->versionLow = protLo;
7742+
moduleSWVersion->moduleQueried = true; // Mark this data as new
77367743

77377744
#ifndef SFE_UBLOX_REDUCED_PROG_MEM
7738-
if (_printDebug == true)
7739-
{
7740-
_debugSerial->print(F("Protocol version: "));
7741-
_debugSerial->print(moduleSWVersion->versionHigh);
7742-
_debugSerial->print(F("."));
7743-
_debugSerial->println(moduleSWVersion->versionLow);
7744-
}
7745+
if (_printDebug == true)
7746+
{
7747+
_debugSerial->print(F("Protocol version: "));
7748+
_debugSerial->print(moduleSWVersion->versionHigh);
7749+
_debugSerial->print(F("."));
7750+
_debugSerial->println(moduleSWVersion->versionLow);
7751+
}
77457752
#endif
7746-
return (true); // Success!
7753+
return (true); // Success!
7754+
}
77477755
}
77487756
}
77497757

src/SparkFun_u-blox_GNSS_Arduino_Library.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -604,7 +604,7 @@ enum sfe_ublox_rxm_mode_e
604604

605605
#ifndef MAX_PAYLOAD_SIZE
606606
// v2.0: keep this for backwards-compatibility, but this is largely superseded by setPacketCfgPayloadSize
607-
#define MAX_PAYLOAD_SIZE 256 // We need ~220 bytes for getProtocolVersion on most ublox modules
607+
#define MAX_PAYLOAD_SIZE 276 // We need >=250 bytes for getProtocolVersion on the NEO-F10N
608608
//#define MAX_PAYLOAD_SIZE 768 //Worst case: UBX_CFG_VALSET packet with 64 keyIDs each with 64 bit values
609609
#endif
610610

0 commit comments

Comments
 (0)