Skip to content

Commit 518e4b7

Browse files
committed
Allow HPG v1.50 firmware
1 parent 2346fa0 commit 518e4b7

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

Firmware/RTK_Surveyor/Begin.ino

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -814,13 +814,14 @@ void beginGNSS()
814814
// Construct the firmware version as uint8_t. Note: will fail above 2.55!
815815
zedFirmwareVersionInt = (theGNSS.getFirmwareVersionHigh() * 100) + theGNSS.getFirmwareVersionLow();
816816

817-
// Check this is known firmware
817+
// Check if this is known firmware
818818
//"1.20" - Mostly for F9R HPS 1.20, but also F9P HPG v1.20
819819
//"1.21" - F9R HPS v1.21
820820
//"1.30" - ZED-F9P (HPG) released Dec, 2021. Also ZED-F9R (HPS) released Sept, 2022
821821
//"1.32" - ZED-F9P released May, 2022
822+
//"1.50" - ZED-F9P released July, 2024
822823

823-
const uint8_t knownFirmwareVersions[] = {100, 112, 113, 120, 121, 130, 132};
824+
const uint8_t knownFirmwareVersions[] = {100, 112, 113, 120, 121, 130, 132, 150};
824825
bool knownFirmware = false;
825826
for (uint8_t i = 0; i < (sizeof(knownFirmwareVersions) / sizeof(uint8_t)); i++)
826827
{

0 commit comments

Comments
 (0)