Skip to content

Commit 73b5109

Browse files
authored
Merge pull request #324 from LeeLeahy2/nvm-cmd
Place platform settings in table, command processor uses commands only
2 parents 996cc26 + 138d802 commit 73b5109

File tree

3 files changed

+68
-80
lines changed

3 files changed

+68
-80
lines changed

Firmware/RTK_Everywhere/Form.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -723,7 +723,7 @@ bool parseIncomingSettings()
723723

724724
// log_d("settingName: %s value: %s", settingName, valueStr);
725725

726-
updateSettingWithValue(settingName, valueStr);
726+
updateSettingWithValue(false, settingName, valueStr);
727727

728728
// Avoid infinite loop if response is malformed
729729
counter++;

Firmware/RTK_Everywhere/NVM.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -876,7 +876,7 @@ bool parseLine(char *str)
876876
double settingValue;
877877

878878
// Loop through the valid command entries
879-
i = commandLookupSettingName(settingName, truncatedName, sizeof(truncatedName), suffix, sizeof(suffix));
879+
i = commandLookupSettingName(false, settingName, truncatedName, sizeof(truncatedName), suffix, sizeof(suffix));
880880

881881
// Determine if settingName is in the command table
882882
if (i >= 0)

0 commit comments

Comments
 (0)