Make EEPROM storage consistent
Update ConfigurationStore to always write dummy values for disabled options, including FWRETRACT, DELTA, and SCARA. Update the EEPROM version to “V15.” Also fixes a buffer overrun with axis_scaling in Config_ResetDefault.
This commit is contained in:
parent
34377ee512
commit
093fedfde8
3 changed files with 610 additions and 495 deletions
|
|
@ -6,17 +6,17 @@
|
|||
void Config_ResetDefault();
|
||||
|
||||
#ifndef DISABLE_M503
|
||||
void Config_PrintSettings();
|
||||
void Config_PrintSettings(bool forReplay=false);
|
||||
#else
|
||||
FORCE_INLINE void Config_PrintSettings() {}
|
||||
FORCE_INLINE void Config_PrintSettings(bool forReplay=false) {}
|
||||
#endif
|
||||
|
||||
#ifdef EEPROM_SETTINGS
|
||||
void Config_StoreSettings();
|
||||
void Config_RetrieveSettings();
|
||||
void Config_StoreSettings();
|
||||
void Config_RetrieveSettings();
|
||||
#else
|
||||
FORCE_INLINE void Config_StoreSettings() {}
|
||||
FORCE_INLINE void Config_RetrieveSettings() { Config_ResetDefault(); Config_PrintSettings(); }
|
||||
FORCE_INLINE void Config_StoreSettings() {}
|
||||
FORCE_INLINE void Config_RetrieveSettings() { Config_ResetDefault(); Config_PrintSettings(); }
|
||||
#endif
|
||||
|
||||
#endif//CONFIG_STORE_H
|
||||
#endif // __CONFIG_STORE_H
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue