My Marlin configs for Fabrikator Mini and CTC i3 Pro B
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

ConfigurationStore.h 423B

123456789101112131415161718192021222324
  1. #ifndef CONFIG_STORE_H
  2. #define CONFIG_STORE_H
  3. #include "Configuration.h"
  4. #ifdef EEPROM_SETTINGS
  5. void Config_StoreSettings();
  6. void Config_RetrieveSettings();
  7. #else
  8. FORCE_INLINE void Config_StoreSettings() {}
  9. FORCE_INLINE void Config_RetrieveSettings() {}
  10. #endif
  11. #ifdef EEPROM_CHITCHAT
  12. void Config_PrintSettings();
  13. #else
  14. FORCE_INLINE void Config_PrintSettings() {}
  15. #endif
  16. void Config_ResetDefault();
  17. #endif