You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
423 B
25 lines
423 B
12 years ago
|
#ifndef CONFIG_STORE_H
|
||
|
#define CONFIG_STORE_H
|
||
|
|
||
|
#include "Configuration.h"
|
||
|
|
||
|
#ifdef EEPROM_SETTINGS
|
||
|
void Config_StoreSettings();
|
||
|
void Config_RetrieveSettings();
|
||
|
#else
|
||
|
FORCE_INLINE void Config_StoreSettings() {}
|
||
|
FORCE_INLINE void Config_RetrieveSettings() {}
|
||
|
#endif
|
||
|
|
||
|
#ifdef EEPROM_CHITCHAT
|
||
|
void Config_PrintSettings();
|
||
|
#else
|
||
|
FORCE_INLINE void Config_PrintSettings() {}
|
||
|
#endif
|
||
|
|
||
|
void Config_ResetDefault();
|
||
|
|
||
|
#endif
|
||
|
|
||
|
|