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
 // the default values are used whenever there is a change to the data, to prevent
37
 // the default values are used whenever there is a change to the data, to prevent
38
 // wrong data being written to the variables.
38
 // wrong data being written to the variables.
39
 // ALSO:  always make sure the variables in the Store and retrieve sections are in the same order.
39
 // ALSO:  always make sure the variables in the Store and retrieve sections are in the same order.
40
+#ifdef DELTA
40
 #define EEPROM_VERSION "V11"
41
 #define EEPROM_VERSION "V11"
42
+#else
43
+#define EEPROM_VERSION "V10"
44
+#endif
41
 
45
 
42
 #ifdef EEPROM_SETTINGS
46
 #ifdef EEPROM_SETTINGS
43
 void Config_StoreSettings() 
47
 void Config_StoreSettings() 

Loading…
Cancel
Save