mirror of
https://github.com/Next-Flip/Momentum-Firmware.git
synced 2026-04-26 03:39:58 -07:00
14 lines
315 B
C
14 lines
315 B
C
#pragma once
|
|
|
|
#include <stdint.h>
|
|
|
|
typedef struct {
|
|
uint32_t auto_lock_delay_ms;
|
|
uint8_t auto_lock_with_pin;
|
|
uint8_t usb_inhibit_auto_lock;
|
|
uint8_t display_clock;
|
|
} DesktopSettings;
|
|
|
|
void desktop_settings_load(DesktopSettings* settings);
|
|
void desktop_settings_save(const DesktopSettings* settings);
|