You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
systemPrintf("20) Delay between CLI LIST prints over BLE: %d\r\n", settings.cliBlePrintDelay_ms);
523
+
522
524
systemPrintln("e) Erase LittleFS");
523
525
524
526
systemPrintln("t) Test Screen");
@@ -590,7 +592,9 @@ void menuDebugHardware()
590
592
elseif (present.gnss_lg290p)
591
593
{
592
594
systemPrintln();
593
-
systemPrintf("QGNSS must be connected to CH342 Port B at %dbps. Begin firmware update from QGNSS (hit the play button) then reset the LG290P.\r\n", settings.dataPortBaud);
595
+
systemPrintf("QGNSS must be connected to CH342 Port B at %dbps. Begin firmware update from QGNSS (hit "
596
+
"the play button) then reset the LG290P.\r\n",
597
+
settings.dataPortBaud);
594
598
gnssReset();
595
599
delay(100);
596
600
gnssBoot();
@@ -629,6 +633,15 @@ void menuDebugHardware()
629
633
{
630
634
settings.debugCLI ^= 1;
631
635
}
636
+
elseif (incoming == 20)
637
+
{
638
+
systemPrintf("Enter millisecond delay (%d to %d) for CLI LIST command over BLE: ", 0, 1000);
639
+
int newDelay = getUserInputNumber(); // Returns EXIT, TIMEOUT, or long
640
+
if ((newDelay != INPUT_RESPONSE_GETNUMBER_EXIT) && (newDelay != INPUT_RESPONSE_GETNUMBER_TIMEOUT))
0 commit comments