2012-11-07 10:02:45 +01:00
|
|
|
#ifndef CONFIG_STORE_H
|
|
|
|
#define CONFIG_STORE_H
|
2012-12-03 12:52:00 +01:00
|
|
|
|
|
|
|
#include "Configuration.h"
|
|
|
|
|
|
|
|
void Config_ResetDefault();
|
|
|
|
|
2013-09-14 13:50:09 +02:00
|
|
|
#ifndef DISABLE_M503
|
2012-11-08 21:08:05 +01:00
|
|
|
void Config_PrintSettings();
|
2012-12-03 12:52:00 +01:00
|
|
|
#else
|
2012-11-08 21:08:05 +01:00
|
|
|
FORCE_INLINE void Config_PrintSettings() {}
|
2012-12-03 12:52:00 +01:00
|
|
|
#endif
|
2012-11-07 10:02:45 +01:00
|
|
|
|
|
|
|
#ifdef EEPROM_SETTINGS
|
|
|
|
void Config_StoreSettings();
|
2012-12-03 12:52:00 +01:00
|
|
|
void Config_RetrieveSettings();
|
|
|
|
#else
|
2012-11-07 10:02:45 +01:00
|
|
|
FORCE_INLINE void Config_StoreSettings() {}
|
2012-12-03 12:52:00 +01:00
|
|
|
FORCE_INLINE void Config_RetrieveSettings() { Config_ResetDefault(); Config_PrintSettings(); }
|
2012-11-07 10:02:45 +01:00
|
|
|
#endif
|
|
|
|
|
2012-12-03 12:52:00 +01:00
|
|
|
#endif//CONFIG_STORE_H
|