5e834352a9
Apply `ENABLED` / `DISABLED` macros to EEPROM-related files.
23 lines
558 B
C
23 lines
558 B
C
#ifndef CONFIGURATION_STORE_H
|
|
#define CONFIGURATION_STORE_H
|
|
|
|
#include "Configuration.h"
|
|
|
|
void Config_ResetDefault();
|
|
|
|
#if DISABLED(DISABLE_M503)
|
|
void Config_PrintSettings(bool forReplay=false);
|
|
#else
|
|
FORCE_INLINE void Config_PrintSettings(bool forReplay=false) {}
|
|
#endif
|
|
|
|
#if ENABLED(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
|