More debug message cleanup

This commit is contained in:
Scott Lahteine
2016-06-27 19:33:37 -07:00
parent dc2c0e5e24
commit 2e96276bf4
2 changed files with 14 additions and 13 deletions

View File

@@ -344,7 +344,9 @@ void Config_RetrieveSettings() {
char stored_ver[4];
char ver[4] = EEPROM_VERSION;
EEPROM_READ_VAR(i, stored_ver); //read stored version
// SERIAL_ECHO("Version: [" << ver << "] Stored version: [" << stored_ver << "]\n");
// SERIAL_ECHOPAIR("Version: [", ver);
// SERIAL_ECHOPAIR("] Stored version: [", stored_ver);
// SERIAL_ECHOLNPGM("]");
if (strncmp(ver, stored_ver, 3) != 0) {
Config_ResetDefault();