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
i2cGNSS.pushRawData(&pmpData->checksumA, (size_t)2); // Push the checksum bytes
795
795
}
796
796
797
-
//If we have decryption keys, and LBand is online, configure module
797
+
//If we have decryption keys, and L-Band is online, configure module
798
798
voidapplyLBandKeys()
799
799
{
800
800
if (online.lband == true)
@@ -808,12 +808,12 @@ void applyLBandKeys()
808
808
//NEO-D9S encrypted PMP messages are only supported on ZED-F9P firmware v1.30 and above
809
809
if (zedModuleType != PLATFORM_F9P)
810
810
{
811
-
Serial.println("Error: LBand corrections currently only supported on the ZED-F9P.");
811
+
Serial.println("Error: L-Band corrections currently only supported on the ZED-F9P.");
812
812
return;
813
813
}
814
814
if (zedFirmwareVersionInt < 130)
815
815
{
816
-
Serial.println("Error: LBand corrections currently supported by ZED-F9P firmware v1.30 and above. Please upgrade your ZED firmware: https://learn.sparkfun.com/tutorials/how-to-upgrade-firmware-of-a-u-blox-gnss-receiver");
816
+
Serial.println("Error: L-Band corrections currently supported by ZED-F9P firmware v1.30 and above. Please upgrade your ZED firmware: https://learn.sparkfun.com/tutorials/how-to-upgrade-firmware-of-a-u-blox-gnss-receiver");
817
817
return;
818
818
}
819
819
@@ -846,21 +846,21 @@ void applyLBandKeys()
846
846
Serial.println(F("setDynamicSPARTNKeys failed"));
847
847
else
848
848
{
849
-
log_d("LBand keys applied");
849
+
log_d("L-Band keys applied");
850
850
online.lbandCorrections = true;
851
851
}
852
852
}
853
853
else
854
854
{
855
-
log_d("No LBand keys available");
855
+
log_d("No L-Band keys available");
856
856
}
857
857
}
858
858
}
859
859
860
860
// Check if the PMP data is being decrypted successfully
0 commit comments