Rename files to move them in the IDE
This commit is contained in:
parent
ac9ca64c50
commit
a22a228bcc
12 changed files with 22 additions and 22 deletions
22
Marlin/configuration_store.h
Normal file
22
Marlin/configuration_store.h
Normal file
|
|
@ -0,0 +1,22 @@
|
|||
#ifndef CONFIGURATION_STORE_H
|
||||
#define CONFIGURATION_STORE_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 //CONFIGURATION_STORE_H
|
||||
Loading…
Add table
Add a link
Reference in a new issue