Skip to content

Commit c6bb559

Browse files
committed
Update menu prints
1 parent 2b0c59e commit c6bb559

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

Firmware/RTK_Everywhere/menuSystem.ino

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -218,7 +218,7 @@ void menuSystem()
218218

219219
systemPrintln("n) Debug network");
220220

221-
systemPrintln("o) Configure RTK operation");
221+
systemPrintln("o) Configure operation");
222222

223223
systemPrintln("p) Configure periodic print messages");
224224

@@ -436,7 +436,7 @@ void menuDebugHardware()
436436
systemPrintf("%s\r\n", settings.enableImuCompensationDebug ? "Enabled" : "Disabled");
437437

438438
if (present.gnss_um980)
439-
systemPrintln("13) UM980 Direct connect");
439+
systemPrintln("13) UM980 direct connect");
440440

441441
systemPrint("14) PSRAM (");
442442
if (ESP.getPsramSize() == 0)
@@ -921,7 +921,8 @@ void menuOperation()
921921
systemPrintln(settings.uartReceiveBufferSize);
922922

923923
// ZED
924-
systemPrintln("10) Mirror ZED-F9x's UART1 settings to USB");
924+
if(present.gnss_zedf9p)
925+
systemPrintln("10) Mirror ZED-F9x's UART1 settings to USB");
925926

926927
// USB Serial
927928
systemPrintln("11) Output GNSS data to USB serial");
@@ -1017,7 +1018,7 @@ void menuOperation()
10171018
ESP.restart();
10181019
}
10191020
}
1020-
else if (incoming == 10)
1021+
else if (incoming == 10 && present.gnss_zedf9p)
10211022
{
10221023
bool response = gnssSetMessagesUsb(MAX_SET_MESSAGES_RETRIES);
10231024

0 commit comments

Comments
 (0)