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 bfd9ee4 commit 3f29926Copy full SHA for 3f29926
Firmware/RTK_Surveyor/Form.ino
@@ -622,7 +622,9 @@ void createSettingsString(char *newSettings)
622
newSettings[0] = '\0'; // Erase current settings string
623
624
// System Info
625
- stringRecord(newSettings, "platformPrefix", platformPrefix);
+ char apPlatformPrefix[80];
626
+ strncpy(apPlatformPrefix, platformPrefixTable[productVariant], sizeof(apPlatformPrefix));
627
+ stringRecord(newSettings, "platformPrefix", apPlatformPrefix);
628
629
char apRtkFirmwareVersion[86];
630
getFirmwareVersion(apRtkFirmwareVersion, sizeof(apRtkFirmwareVersion), true);
0 commit comments