Initial commit
This commit is contained in:
commit
30f0528aba
87 changed files with 113833 additions and 0 deletions
Firmware
22
Firmware/ConfigurationStore.h
Executable file
22
Firmware/ConfigurationStore.h
Executable file
|
@ -0,0 +1,22 @@
|
|||
#ifndef CONFIG_STORE_H
|
||||
#define CONFIG_STORE_H
|
||||
|
||||
#include "Configuration.h"
|
||||
|
||||
void Config_ResetDefault();
|
||||
|
||||
#ifndef DISABLE_M503
|
||||
void Config_PrintSettings();
|
||||
#else
|
||||
FORCE_INLINE void Config_PrintSettings() {}
|
||||
#endif
|
||||
|
||||
#ifdef EEPROM_SETTINGS
|
||||
void Config_StoreSettings();
|
||||
void Config_RetrieveSettings();
|
||||
#else
|
||||
FORCE_INLINE void Config_StoreSettings() {}
|
||||
FORCE_INLINE void Config_RetrieveSettings() { Config_ResetDefault(); Config_PrintSettings(); }
|
||||
#endif
|
||||
|
||||
#endif//CONFIG_STORE_H
|
Loading…
Add table
Add a link
Reference in a new issue