Files
Momentum-Firmware/applications/services/power/power_settings.h
2023-03-28 00:13:28 +01:00

13 lines
327 B
C

#include <toolbox/saved_struct.h>
#include <storage/storage.h>
#define POWER_SETTINGS_VER (1)
#define POWER_SETTINGS_OLD_PATH INT_PATH(".power.settings")
#define POWER_SETTINGS_PATH CFG_PATH("power.settings")
#define POWER_SETTINGS_MAGIC (0x21)
bool SAVE_POWER_SETTINGS(uint32_t* x);
bool LOAD_POWER_SETTINGS(uint32_t* x);