File tree Expand file tree Collapse file tree 3 files changed +12
-12
lines changed Expand file tree Collapse file tree 3 files changed +12
-12
lines changed Original file line number Diff line number Diff line change @@ -289,18 +289,18 @@ void sendGnssBuffer()
289
289
{
290
290
if (gnss->pushRawData (bluetoothOutgoingToGnss, bluetoothOutgoingToGnssHead))
291
291
{
292
- if ((settings.debugCorrections || PERIODIC_DISPLAY (PD_ZED_DATA_TX )) && !inMainMenu)
292
+ if ((settings.debugCorrections || PERIODIC_DISPLAY (PD_GNSS_DATA_TX )) && !inMainMenu)
293
293
{
294
- PERIODIC_CLEAR (PD_ZED_DATA_TX );
294
+ PERIODIC_CLEAR (PD_GNSS_DATA_TX );
295
295
systemPrintf (" Sent %d BT bytes to GNSS\r\n " , bluetoothOutgoingToGnssHead);
296
296
}
297
297
}
298
298
}
299
299
else
300
300
{
301
- if ((settings.debugCorrections || PERIODIC_DISPLAY (PD_ZED_DATA_TX )) && !inMainMenu)
301
+ if ((settings.debugCorrections || PERIODIC_DISPLAY (PD_GNSS_DATA_TX )) && !inMainMenu)
302
302
{
303
- PERIODIC_CLEAR (PD_ZED_DATA_TX );
303
+ PERIODIC_CLEAR (PD_GNSS_DATA_TX );
304
304
systemPrintf (" %d BT bytes NOT sent due to priority\r\n " , bluetoothOutgoingToGnssHead);
305
305
}
306
306
}
@@ -573,9 +573,9 @@ void processUart1Message(SEMP_PARSE_STATE *parse, uint16_t type)
573
573
int32_t use;
574
574
575
575
// Display the message
576
- if ((settings.enablePrintLogFileMessages || PERIODIC_DISPLAY (PD_ZED_DATA_RX )) && (!parse->crc ) && (!inMainMenu))
576
+ if ((settings.enablePrintLogFileMessages || PERIODIC_DISPLAY (PD_GNSS_DATA_RX )) && (!parse->crc ) && (!inMainMenu))
577
577
{
578
- PERIODIC_CLEAR (PD_ZED_DATA_RX );
578
+ PERIODIC_CLEAR (PD_GNSS_DATA_RX );
579
579
if (settings.enablePrintLogFileMessages )
580
580
{
581
581
printTimeStamp ();
Original file line number Diff line number Diff line change @@ -1147,10 +1147,10 @@ void menuPeriodicPrint()
1147
1147
systemPrintf (" %s\r\n " , PERIODIC_SETTING (PD_WIFI_STATE) ? " Enabled" : " Disabled" );
1148
1148
1149
1149
systemPrint (" 8) ZED RX data: " );
1150
- systemPrintf (" %s\r\n " , PERIODIC_SETTING (PD_ZED_DATA_RX ) ? " Enabled" : " Disabled" );
1150
+ systemPrintf (" %s\r\n " , PERIODIC_SETTING (PD_GNSS_DATA_RX ) ? " Enabled" : " Disabled" );
1151
1151
1152
1152
systemPrint (" 9) ZED TX data: " );
1153
- systemPrintf (" %s\r\n " , PERIODIC_SETTING (PD_ZED_DATA_TX ) ? " Enabled" : " Disabled" );
1153
+ systemPrintf (" %s\r\n " , PERIODIC_SETTING (PD_GNSS_DATA_TX ) ? " Enabled" : " Disabled" );
1154
1154
1155
1155
systemPrintln (" ----- Software -----" );
1156
1156
@@ -1270,9 +1270,9 @@ void menuPeriodicPrint()
1270
1270
else if (incoming == 7 )
1271
1271
PERIODIC_TOGGLE (PD_WIFI_STATE);
1272
1272
else if (incoming == 8 )
1273
- PERIODIC_TOGGLE (PD_ZED_DATA_RX );
1273
+ PERIODIC_TOGGLE (PD_GNSS_DATA_RX );
1274
1274
else if (incoming == 9 )
1275
- PERIODIC_TOGGLE (PD_ZED_DATA_TX );
1275
+ PERIODIC_TOGGLE (PD_GNSS_DATA_TX );
1276
1276
1277
1277
else if (incoming == 20 )
1278
1278
{
Original file line number Diff line number Diff line change @@ -301,8 +301,8 @@ enum PeriodDisplayValues
301
301
PD_CELLULAR_STATE, // 28
302
302
PD_WIFI_STATE, // 29
303
303
304
- PD_ZED_DATA_RX , // 30
305
- PD_ZED_DATA_TX , // 31
304
+ PD_GNSS_DATA_RX , // 30
305
+ PD_GNSS_DATA_TX , // 31
306
306
307
307
PD_MQTT_CLIENT_DATA, // 32
308
308
PD_MQTT_CLIENT_STATE, // 33
You can’t perform that action at this time.
0 commit comments