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 6672650 + cbdbae9 commit ff9681fCopy full SHA for ff9681f
Firmware/RTK_Everywhere/menuCommands.ino
@@ -1431,6 +1431,7 @@ void createSettingsString(char *newSettings)
1431
{
1432
char tagText[80];
1433
char nameText[64];
1434
+ RTK_Settings_Types type;
1435
1436
newSettings[0] = '\0'; // Erase current settings string
1437
@@ -1451,7 +1452,13 @@ void createSettingsString(char *newSettings)
1451
1452
1453
if (rtkSettingsEntries[i].inWebConfig && (settingAvailableOnPlatform(i) == true))
1454
- switch (rtkSettingsEntries[i].type)
1455
+ // Handle GNSS specific types
1456
+ type = rtkSettingsEntries[i].type;
1457
+ if (gnssCreateString(type, i, newSettings))
1458
+ continue;
1459
+
1460
+ // Handle the generic types
1461
+ switch (type)
1462
1463
default:
1464
break;
0 commit comments