mirror of
https://github.com/Next-Flip/Momentum-Firmware.git
synced 2026-05-13 04:58:36 -07:00
21 lines
341 B
C
21 lines
341 B
C
#pragma once
|
|
|
|
#include <stdint.h>
|
|
#include <stdbool.h>
|
|
|
|
typedef struct {
|
|
uint32_t auto_poweroff_delay_ms;
|
|
uint8_t charge_supress_percent;
|
|
} PowerSettings;
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
void power_settings_load(PowerSettings* settings);
|
|
void power_settings_save(const PowerSettings* settings);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|