mirror of
https://github.com/Next-Flip/Momentum-Firmware.git
synced 2026-04-24 03:29:57 -07:00
13 lines
272 B
C
13 lines
272 B
C
#pragma once
|
|
|
|
#include <stdint.h>
|
|
#include <stdbool.h>
|
|
|
|
typedef struct {
|
|
uint32_t auto_poweroff_delay_ms;
|
|
uint8_t charge_supress_percent;
|
|
} PowerSettings;
|
|
|
|
void power_settings_load(PowerSettings* settings);
|
|
void power_settings_save(const PowerSettings* settings);
|