Browse Source

Only increase EEPROM version for DELTA printers.

Erik van der Zalm 11 years ago
parent
commit
fcd8524b6e
1 changed files with 4 additions and 0 deletions
  1. 4
    0
      Marlin/ConfigurationStore.cpp

+ 4
- 0
Marlin/ConfigurationStore.cpp View File

@@ -37,7 +37,11 @@ void _EEPROM_readData(int &pos, uint8_t* value, uint8_t size)
37 37
 // the default values are used whenever there is a change to the data, to prevent
38 38
 // wrong data being written to the variables.
39 39
 // ALSO:  always make sure the variables in the Store and retrieve sections are in the same order.
40
+#ifdef DELTA
40 41
 #define EEPROM_VERSION "V11"
42
+#else
43
+#define EEPROM_VERSION "V10"
44
+#endif
41 45
 
42 46
 #ifdef EEPROM_SETTINGS
43 47
 void Config_StoreSettings() 

Loading…
Cancel
Save