Skip to content
Snippets Groups Projects
Commit 8f4e4b19 authored by Scott Lahteine's avatar Scott Lahteine
Browse files

Display a message for EEPROM version mismatch

parent b9b203bf
Branches
No related tags found
No related merge requests found
...@@ -458,13 +458,16 @@ void Config_Postprocess() { ...@@ -458,13 +458,16 @@ void Config_Postprocess() {
uint16_t stored_checksum; uint16_t stored_checksum;
EEPROM_READ(stored_checksum); EEPROM_READ(stored_checksum);
// SERIAL_ECHOPAIR("Version: [", version);
// SERIAL_ECHOPAIR("] Stored version: [", stored_ver);
// SERIAL_CHAR(']');
// SERIAL_EOL;
// Version has to match or defaults are used // Version has to match or defaults are used
if (strncmp(version, stored_ver, 3) != 0) { if (strncmp(version, stored_ver, 3) != 0) {
if (stored_ver[0] != 'V') {
stored_ver[0] = '?';
stored_ver[1] = '\0';
}
SERIAL_ECHO_START;
SERIAL_ECHOPGM("EEPROM version mismatch ");
SERIAL_ECHOPAIR("(EEPROM=", stored_ver);
SERIAL_ECHOLNPGM(" Marlin=" EEPROM_VERSION ")");
Config_ResetDefault(); Config_ResetDefault();
} }
else { else {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment