@@ -149,7 +149,7 @@ typedef enum
149
149
typedef uint8_t CORRECTION_ID_T; // Type holding a correction ID or priority
150
150
typedef uint8_t CORRECTION_MASK_T; // Type holding a bitmask of correction IDs
151
151
152
- const char * const correctionsSourceNames[correctionsSource:: CORR_NUM] =
152
+ const char * const correctionsSourceNames[CORR_NUM] =
153
153
{
154
154
// These must match correctionsSource above
155
155
" External Radio" ,
@@ -620,7 +620,7 @@ struct Settings
620
620
621
621
// Corrections
622
622
int correctionsSourcesLifetime_s = 30 ; // Expire a corrections source if no data is seen for this many seconds
623
- CORRECTION_ID_T correctionsSourcesPriority[correctionsSource:: CORR_NUM] = { (CORRECTION_ID_T)-1 }; // -1 indicates array is uninitialized, indexed by correction source ID
623
+ CORRECTION_ID_T correctionsSourcesPriority[CORR_NUM] = { (CORRECTION_ID_T)-1 }; // -1 indicates array is uninitialized, indexed by correction source ID
624
624
bool debugCorrections = false ;
625
625
uint8_t enableExtCorrRadio = 254 ; // Will be initialized to true or false depending on model
626
626
uint8_t extCorrRadioSPARTNSource = 0 ; // This selects IP (0) vs. L-Band (1) for _SPARTN_ corrections on Radio Ext (UART2)
@@ -1177,7 +1177,7 @@ const RTK_Settings_Entry rtkSettingsEntries[] =
1177
1177
1178
1178
// Corrections
1179
1179
{ 1 , 1 , 0 , 1 , 1 , 1 , 1 , 1 , 1 , _int, 0 , & settings.correctionsSourcesLifetime_s , " correctionsSourcesLifetime" , },
1180
- { 1 , 1 , 1 , 1 , 1 , 1 , 1 , 1 , 1 , tCorrSPri, correctionsSource:: CORR_NUM, & settings.correctionsSourcesPriority , " correctionsPriority_" , },
1180
+ { 1 , 1 , 1 , 1 , 1 , 1 , 1 , 1 , 1 , tCorrSPri, CORR_NUM, & settings.correctionsSourcesPriority , " correctionsPriority_" , },
1181
1181
{ 0 , 0 , 0 , 1 , 1 , 1 , 1 , 1 , 1 , _bool, 0 , & settings.debugCorrections , " debugCorrections" , },
1182
1182
{ 1 , 1 , 0 , 1 , 1 , 1 , 0 , 1 , 1 , _bool, 0 , & settings.enableExtCorrRadio , " enableExtCorrRadio" , },
1183
1183
{ 1 , 1 , 0 , 1 , 1 , 0 , 0 , 1 , 0 , _uint8_t , 0 , & settings.extCorrRadioSPARTNSource , " extCorrRadioSPARTNSource" , },
0 commit comments