Skip to content

Commit 659ca02

Browse files
committed
Do not overwrite rtkID when reading from files
1 parent 7d3da2d commit 659ca02

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Firmware/RTK_Surveyor/NVM.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -419,7 +419,7 @@ bool parseLine(char* str, Settings *settings)
419419

420420
}
421421
else if (strcmp(settingName, "rtkIdentifier") == 0)
422-
settings->rtkIdentifier = d;
422+
{} //Do nothing. Just read it to avoid 'Unknown setting' error
423423
else if (strcmp(settingName, "rtkFirmwareVersion") == 0)
424424
{} //Do nothing. Just read it to avoid 'Unknown setting' error
425425
else if (strcmp(settingName, "zedFirmwareVersion") == 0)

0 commit comments

Comments
 (0)