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 dd9642b commit eb5a3aeCopy full SHA for eb5a3ae
Firmware/RTK_Surveyor/NVM.ino
@@ -469,9 +469,12 @@ bool parseLine(char* str, Settings *settings)
469
for (int x = 0 ; x < strlen(settingValue) ; x++)
470
{
471
if (settingValue[x] == '.') decimalCount++;
472
- else if (x == 0 && settingValue[x] == '-') {;} //Do nothing
+ else if (x == 0 && settingValue[x] == '-')
473
+ {
474
+ ; //Do nothing
475
+ }
476
else if (isAlpha(settingValue[x])) hasSymbol = true;
- else if(isDigit(settingValue[x]) == false) hasSymbol = true;
477
+ else if (isDigit(settingValue[x]) == false) hasSymbol = true;
478
}
479
480
//See issue: https://github.com/sparkfun/SparkFun_RTK_Firmware/issues/274
0 commit comments