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.
1 parent b35a748 commit 3952d7bCopy full SHA for 3952d7b
Firmware/RTK_Everywhere/menuMain.ino
@@ -606,7 +606,14 @@ void menuRadio()
606
else
607
{
608
loraGetVersion();
609
- systemPrintf("10) LoRa Radio: Enabled - Firmware v%s\r\n", loraFirmwareVersion);
+ if (strlen(loraFirmwareVersion) < 3)
610
+ {
611
+ strncpy(loraFirmwareVersion, "Unknown", sizeof(loraFirmwareVersion));
612
+ systemPrintf("10) LoRa Radio: Enabled - Firmware Unknown\r\n");
613
+ }
614
+ else
615
+ systemPrintf("10) LoRa Radio: Enabled - Firmware v%s\r\n", loraFirmwareVersion);
616
+
617
systemPrintf("11) LoRa Coordination Frequency: %0.3f\r\n", settings.loraCoordinationFrequency);
618
systemPrintf("12) Seconds without user serial that must elapse before LoRa radio goes into dedicated "
619
"listening mode: %d\r\n",
0 commit comments