Skip to content

Commit bf488b4

Browse files
committed
Remove enablePointPerfectCorrections setting
1 parent 615cb49 commit bf488b4

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

Firmware/RTK_Everywhere/settings.h

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -691,7 +691,7 @@ struct Settings
691691

692692
// Signatures to indicate how the GNSS is configured (Once, Base, Rover, etc.)
693693
// Bit 0 indicates if the GNSS has been configured previously.
694-
// Bits 1 onwards record the state of critical settings. E.g. settings.enablePointPerfectCorrections
694+
// Bits 1 onwards record the state of critical settings.
695695
// Configuration is reapplied if any of those critical settings have changed
696696
bool gnssConfiguredOnce = false;
697697
bool gnssConfiguredBase = false;
@@ -835,7 +835,6 @@ struct Settings
835835
// Point Perfect
836836
bool autoKeyRenewal = true; // Attempt to get keys if we get under 28 days from the expiration date
837837
bool debugPpCertificate = false; // Debug Point Perfect certificate management
838-
bool enablePointPerfectCorrections = false; // Things are better now. We could default to true. Also change line 940 in index.html
839838
int geographicRegion = 0; // Default to US - first entry in Regional_Information_Table
840839
uint64_t lastKeyAttempt = 0; // Epoch time of last attempt at obtaining keys
841840
uint16_t lbandFixTimeout_seconds = 180; // Number of seconds of no L-Band fix before resetting ZED
@@ -1433,7 +1432,6 @@ const RTK_Settings_Entry rtkSettingsEntries[] =
14331432
// Point Perfect
14341433
{ 1, 1, 0, 1, 1, 1, 1, 1, 1, _bool, 0, & settings.autoKeyRenewal, "autoKeyRenewal", },
14351434
{ 0, 0, 0, 1, 1, 1, 1, 1, 1, _bool, 0, & settings.debugPpCertificate, "debugPpCertificate", },
1436-
{ 1, 1, 0, 1, 1, 1, 1, 1, 1, _bool, 0, & settings.enablePointPerfectCorrections, "enablePointPerfectCorrections", },
14371435
{ 1, 1, 0, 1, 1, 1, 1, 1, 1, _int, 0, & settings.geographicRegion, "geographicRegion", },
14381436
{ 0, 0, 0, 1, 1, 1, 1, 1, 1, _uint64_t, 0, & settings.lastKeyAttempt, "lastKeyAttempt", },
14391437
{ 0, 1, 0, 1, 1, 1, 1, 1, 1, _uint16_t, 0, & settings.lbandFixTimeout_seconds, "lbandFixTimeout", },

0 commit comments

Comments
 (0)