浏览代码

Only increase EEPROM version for DELTA printers.

Erik van der Zalm 11 年前
父节点
当前提交
fcd8524b6e
共有 1 个文件被更改,包括 4 次插入0 次删除
  1. 4
    0
      Marlin/ConfigurationStore.cpp

+ 4
- 0
Marlin/ConfigurationStore.cpp 查看文件

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() 

正在加载...
取消
保存