Skip to content

Commit ccd9ef6

Browse files
committed
Add UM980 firmware check
1 parent 0a31c7f commit ccd9ef6

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

Firmware/RTK_Everywhere/RTK_Everywhere.ino

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -826,7 +826,7 @@ unsigned long loraLastIncomingSerial; //Last time a user sent a serial command.
826826

827827
// Display boot times
828828
//-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
829-
#define MAX_BOOT_TIME_ENTRIES 40
829+
#define MAX_BOOT_TIME_ENTRIES 41
830830
uint8_t bootTimeIndex;
831831
uint32_t bootTime[MAX_BOOT_TIME_ENTRIES];
832832
const char *bootTimeString[MAX_BOOT_TIME_ENTRIES];
@@ -1041,6 +1041,10 @@ void setup()
10411041
if (checkUpdateLoraFirmware() == true) // Check if updateLoraFirmware.txt exists
10421042
beginLoraFirmwareUpdate();
10431043

1044+
DMW_b("checkUpdateUm980Firmware");
1045+
if (checkUpdateUm980Firmware() == true) // Check if updateLoraFirmware.txt exists
1046+
beginUm980FirmwareUpdate();
1047+
10441048
DMW_b("checkConfigureViaEthernet");
10451049
configureViaEthernet =
10461050
checkConfigureViaEthernet(); // Check if going into dedicated configureViaEthernet (STATE_CONFIG_VIA_ETH) mode

0 commit comments

Comments
 (0)