2012-11-07 09:02:45 +00:00
|
|
|
#ifndef CONFIG_STORE_H
|
|
|
|
#define CONFIG_STORE_H
|
2012-12-03 11:52:00 +00:00
|
|
|
|
|
|
|
#include "Configuration.h"
|
|
|
|
|
|
|
|
void Config_ResetDefault();
|
|
|
|
|
2013-09-14 11:50:09 +00:00
|
|
|
#ifndef DISABLE_M503
|
2015-01-28 09:08:48 +00:00
|
|
|
void Config_PrintSettings(bool forReplay=false);
|
2012-12-03 11:52:00 +00:00
|
|
|
#else
|
2015-01-28 09:08:48 +00:00
|
|
|
FORCE_INLINE void Config_PrintSettings(bool forReplay=false) {}
|
2012-12-03 11:52:00 +00:00
|
|
|
#endif
|
2012-11-07 09:02:45 +00:00
|
|
|
|
|
|
|
#ifdef EEPROM_SETTINGS
|
2015-01-28 09:08:48 +00:00
|
|
|
void Config_StoreSettings();
|
|
|
|
void Config_RetrieveSettings();
|
2012-12-03 11:52:00 +00:00
|
|
|
#else
|
2015-01-28 09:08:48 +00:00
|
|
|
FORCE_INLINE void Config_StoreSettings() {}
|
|
|
|
FORCE_INLINE void Config_RetrieveSettings() { Config_ResetDefault(); Config_PrintSettings(); }
|
2012-11-07 09:02:45 +00:00
|
|
|
#endif
|
|
|
|
|
2015-01-28 09:08:48 +00:00
|
|
|
#endif // __CONFIG_STORE_H
|