Files
Momentum-Firmware/applications/services/power/power_settings.h
Willy-JL b7220237de Small bump in the road
- Update assets and references for new project
- Revert DFU image and CLI motd
- Remove NSFW text and flag
- Remove credits animation (will be replaced with a setting menu soon)
- New EvilPortal example HTML and better error message
- Initial standalone naming for asset packs and mainmenu apps
- File migration fixes/improvements
- Remove hotfix workflow
2024-03-01 06:11:16 +00:00

20 lines
336 B
C

#include <toolbox/saved_struct.h>
#include <storage/storage.h>
#define POWER_SETTINGS_VER (1)
#define POWER_SETTINGS_PATH CFG_PATH("power.settings")
#define POWER_SETTINGS_MAGIC (0x21)
#ifdef __cplusplus
extern "C" {
#endif
bool SAVE_POWER_SETTINGS(uint32_t* x);
bool LOAD_POWER_SETTINGS(uint32_t* x);
#ifdef __cplusplus
}
#endif