We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 73b5109 + 20cf4c2 commit a5f7d0fCopy full SHA for a5f7d0f
Firmware/RTK_Everywhere/menuPorts.ino
@@ -70,6 +70,8 @@ void menuPortsNoMux()
70
else
71
systemPrintln("Disabled");
72
73
+ systemPrintf("4) Output GNSS data to USB serial: %s\r\n", settings.enableGnssToUsbSerial ? "Enabled" : "Disabled");
74
+
75
systemPrintln("x) Exit");
76
77
int incoming = getUserInputNumber(); // Returns EXIT, TIMEOUT, or long
@@ -117,6 +119,8 @@ void menuPortsNoMux()
117
119
settings.enableUART2UBXIn ^= 1;
118
120
systemPrintln("UART2 Protocol In updated. Changes will be applied at next restart");
121
}
122
+ else if (incoming == 4)
123
+ settings.enableGnssToUsbSerial ^= 1;
124
125
else if (incoming == 'x')
126
break;
0 commit comments