My Marlin configs for Fabrikator Mini and CTC i3 Pro B
Vous ne pouvez pas sélectionner plus de 25 sujets
Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
12345678910111213141516171819202122 |
- #ifndef CONFIGURATIONSTORE_H
- #define CONFIGURATIONSTORE_H
-
- #include "Configuration.h"
-
- void Config_ResetDefault();
-
- #ifndef DISABLE_M503
- void Config_PrintSettings(bool forReplay=false);
- #else
- FORCE_INLINE void Config_PrintSettings(bool forReplay=false) {}
- #endif
-
- #ifdef EEPROM_SETTINGS
- void Config_StoreSettings();
- void Config_RetrieveSettings();
- #else
- FORCE_INLINE void Config_StoreSettings() {}
- FORCE_INLINE void Config_RetrieveSettings() { Config_ResetDefault(); Config_PrintSettings(); }
- #endif
-
- #endif //CONFIGURATIONSTORE_H
|