Browse Source

Fix EEPROM checksum bug

Addressing #12048
Scott Lahteine 6 years ago
parent
commit
9b5c1a5e77
1 changed files with 2 additions and 2 deletions
  1. 2
    2
      Marlin/src/module/configuration_store.cpp

+ 2
- 2
Marlin/src/module/configuration_store.cpp View File

@@ -37,8 +37,8 @@
37 37
  */
38 38
 
39 39
 // Change EEPROM version if the structure changes
40
-#define EEPROM_VERSION "V60"
41
-#define EEPROM_OFFSET 0
40
+#define EEPROM_VERSION "V61"
41
+#define EEPROM_OFFSET 100
42 42
 
43 43
 // Check the integrity of data offsets.
44 44
 // Can be disabled for production build.

Loading…
Cancel
Save