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
|
2012-11-08 20:08:05 +00:00
|
|
|
void Config_PrintSettings();
|
2012-12-03 11:52:00 +00:00
|
|
|
#else
|
2012-11-08 20:08:05 +00:00
|
|
|
FORCE_INLINE void Config_PrintSettings() {}
|
2012-12-03 11:52:00 +00:00
|
|
|
#endif
|
2012-11-07 09:02:45 +00:00
|
|
|
|
|
|
|
#ifdef EEPROM_SETTINGS
|
|
|
|
void Config_StoreSettings();
|
2012-12-03 11:52:00 +00:00
|
|
|
void Config_RetrieveSettings();
|
|
|
|
#else
|
2012-11-07 09:02:45 +00:00
|
|
|
FORCE_INLINE void Config_StoreSettings() {}
|
2012-12-03 11:52:00 +00:00
|
|
|
FORCE_INLINE void Config_RetrieveSettings() { Config_ResetDefault(); Config_PrintSettings(); }
|
2012-11-07 09:02:45 +00:00
|
|
|
#endif
|
|
|
|
|
2012-12-03 11:52:00 +00:00
|
|
|
#endif//CONFIG_STORE_H
|