Skip to content

Commit fcaf7ca

Browse files
authored
Merge pull request #351 from LeeLeahy2/correction-priorities
Adjust the correction priorities
2 parents c8a3489 + c75a069 commit fcaf7ca

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed

Firmware/RTK_Everywhere/settings.h

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -130,27 +130,27 @@ const int platformProvisionTableEntries = sizeof (platformProvisionTable) / size
130130
typedef enum
131131
{
132132
// 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
140140
// Add new correction sources just above this line
141141
CORR_NUM
142142
} correctionsSource;
143143

144144
const char * const correctionsSourceNames[correctionsSource::CORR_NUM] =
145145
{
146146
// These must match correctionsSource above
147+
"External Radio",
148+
"ESP-Now",
149+
"LoRa Radio",
147150
"Bluetooth",
148-
"IP (PointPerfect/MQTT)",
149151
"TCP (NTRIP)",
150152
"L-Band",
151-
"External Radio",
152-
"LoRa Radio",
153-
"ESP-Now",
153+
"IP (PointPerfect/MQTT)",
154154
// Add new correction sources just above this line
155155
};
156156

0 commit comments

Comments
 (0)