Skip to content

Commit bda1e44

Browse files
committed
Remove old debug statements
1 parent 9bfe29c commit bda1e44

File tree

1 file changed

+1
-7
lines changed

1 file changed

+1
-7
lines changed

Firmware/RTK_Surveyor/NVM.ino

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -307,15 +307,9 @@ bool parseLine(char* str) {
307307
str = strtok(nullptr, "\n");
308308
if (!str) return false;
309309

310-
//Serial.printf("s = %s\r\n", str);
311-
//Serial.flush();
312-
313-
//Attempt to convert string to double.
310+
//Attempt to convert string to double
314311
double d = strtod(str, &ptr);
315312

316-
//Serial.printf("d = %lf\r\n", d);
317-
//Serial.flush();
318-
319313
char settingValue[50];
320314
if (d == 0.0) //strtod failed, may be string or may be 0 but let it pass
321315
{

0 commit comments

Comments
 (0)