mirror of
https://github.com/Next-Flip/Momentum-Firmware.git
synced 2026-05-14 15:28:36 -07:00
14 lines
379 B
C
14 lines
379 B
C
#include <toolbox/saved_struct.h>
|
|
#include <storage/storage.h>
|
|
#include "power_settings_filename.h"
|
|
|
|
#define POWER_SETTINGS_VER (1)
|
|
|
|
#define POWER_SETTINGS_OLD_PATH INT_PATH(POWER_SETTINGS_FILE_NAME)
|
|
#define POWER_SETTINGS_PATH EXT_PATH(POWER_SETTINGS_FILE_NAME)
|
|
#define POWER_SETTINGS_MAGIC (0x21)
|
|
|
|
bool SAVE_POWER_SETTINGS(uint32_t* x);
|
|
|
|
bool LOAD_POWER_SETTINGS(uint32_t* x);
|