mirror of
https://github.com/Next-Flip/Momentum-Firmware.git
synced 2026-05-12 15:48:35 -07:00
11 lines
215 B
C
11 lines
215 B
C
#pragma once
|
|
|
|
#include <stdint.h>
|
|
|
|
typedef struct {
|
|
uint32_t auto_poweroff_delay_ms;
|
|
} PowerSettings;
|
|
|
|
void power_settings_load(PowerSettings* settings);
|
|
void power_settings_save(const PowerSettings* settings);
|