@@ -130,27 +130,27 @@ const int platformProvisionTableEntries = sizeof (platformProvisionTable) / size
130
130
typedef enum
131
131
{
132
132
// Change the order of these to set the default priority. First (0) is highest
133
- CORR_BLUETOOTH = 0 , // Added - Tasks.ino (sendGnssBuffer)
134
- CORR_IP, // Added - MQTT_Client .ino
135
- CORR_TCP, // Added - NtripClient.ino
136
- CORR_LBAND, // Added - menuPP.ino for PMP - PointPerfectLibrary .ino for PPL
137
- CORR_RADIO_EXT, // TODO: this needs a meeting. Data goes direct from RADIO connector to ZED - or X5. How to disable / enable it? Via port protocol?
138
- CORR_RADIO_LORA, // TODO: this needs a meeting. UM980 only? Does data go direct from LoRa to UM980?
139
- CORR_ESPNOW, // Added - ESPNOW .ino
133
+ CORR_RADIO_EXT = 0 , // 0, 100 m Baseline, Data goes direct from RADIO connector to ZED - or X5. How to disable / enable it? Via port protocol?
134
+ CORR_ESPNOW, // 1, 100 m Baseline, ESPNOW .ino
135
+ CORR_RADIO_LORA, // 2, 1 km Baseline, UM980 only? Does data go direct from LoRa to UM980?
136
+ CORR_BLUETOOTH, // 3, 10+km Baseline, Tasks .ino (sendGnssBuffer)
137
+ CORR_TCP, // 4, 10+km Baseline, NtripClient.ino
138
+ CORR_LBAND, // 5, 100 km Baseline, menuPP.ino for PMP - PointPerfectLibrary.ino for PPL
139
+ CORR_IP, // 6, 100+km Baseline, MQTT_Client .ino
140
140
// Add new correction sources just above this line
141
141
CORR_NUM
142
142
} correctionsSource;
143
143
144
144
const char * const correctionsSourceNames[correctionsSource::CORR_NUM] =
145
145
{
146
146
// These must match correctionsSource above
147
+ " External Radio" ,
148
+ " ESP-Now" ,
149
+ " LoRa Radio" ,
147
150
" Bluetooth" ,
148
- " IP (PointPerfect/MQTT)" ,
149
151
" TCP (NTRIP)" ,
150
152
" L-Band" ,
151
- " External Radio" ,
152
- " LoRa Radio" ,
153
- " ESP-Now" ,
153
+ " IP (PointPerfect/MQTT)" ,
154
154
// Add new correction sources just above this line
155
155
};
156
156
0 commit comments