2012-11-07 04:02:45 -05:00
|
|
|
#ifndef CONFIG_STORE_H
|
|
|
|
#define CONFIG_STORE_H
|
2012-12-03 06:52:00 -05:00
|
|
|
|
|
|
|
#include "Configuration.h"
|
|
|
|
|
|
|
|
void Config_ResetDefault();
|
|
|
|
|
2012-11-08 15:08:05 -05:00
|
|
|
#ifdef EEPROM_CHITCHAT
|
|
|
|
void Config_PrintSettings();
|
2012-12-03 06:52:00 -05:00
|
|
|
#else
|
2012-11-08 15:08:05 -05:00
|
|
|
FORCE_INLINE void Config_PrintSettings() {}
|
2012-12-03 06:52:00 -05:00
|
|
|
#endif
|
2012-11-07 04:02:45 -05:00
|
|
|
|
|
|
|
#ifdef EEPROM_SETTINGS
|
|
|
|
void Config_StoreSettings();
|
2012-12-03 06:52:00 -05:00
|
|
|
void Config_RetrieveSettings();
|
|
|
|
#else
|
2012-11-07 04:02:45 -05:00
|
|
|
FORCE_INLINE void Config_StoreSettings() {}
|
2012-12-03 06:52:00 -05:00
|
|
|
FORCE_INLINE void Config_RetrieveSettings() { Config_ResetDefault(); Config_PrintSettings(); }
|
2012-11-07 04:02:45 -05:00
|
|
|
#endif
|
|
|
|
|
2012-12-03 06:52:00 -05:00
|
|
|
#endif//CONFIG_STORE_H
|