2021-09-28 12:40:39 +03:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
|
|
#include <stdint.h>
|
|
|
|
|
|
2024-07-15 20:02:45 +03:00
|
|
|
#define DISPLAY_BATTERY_BAR 0
|
|
|
|
|
#define DISPLAY_BATTERY_PERCENT 1
|
2023-01-09 17:15:00 +03:00
|
|
|
#define DISPLAY_BATTERY_INVERTED_PERCENT 2
|
2024-07-15 20:02:45 +03:00
|
|
|
#define DISPLAY_BATTERY_RETRO_3 3
|
|
|
|
|
#define DISPLAY_BATTERY_RETRO_5 4
|
|
|
|
|
#define DISPLAY_BATTERY_BAR_PERCENT 5
|
2023-01-09 17:15:00 +03:00
|
|
|
|
2023-08-17 13:04:40 +03:00
|
|
|
typedef enum {
|
2024-08-10 13:18:51 +03:00
|
|
|
FavoriteAppLeftShort,
|
2023-08-17 13:04:40 +03:00
|
|
|
FavoriteAppLeftLong,
|
|
|
|
|
FavoriteAppRightShort,
|
|
|
|
|
FavoriteAppRightLong,
|
|
|
|
|
|
|
|
|
|
FavoriteAppNumber,
|
|
|
|
|
} FavoriteAppShortcut;
|
|
|
|
|
|
|
|
|
|
typedef enum {
|
2024-08-10 14:22:33 +03:00
|
|
|
DummyAppLeftShort,
|
2023-08-17 13:40:55 +03:00
|
|
|
DummyAppLeftLong,
|
2024-08-10 14:22:33 +03:00
|
|
|
DummyAppRightShort,
|
2023-08-17 13:40:55 +03:00
|
|
|
DummyAppRightLong,
|
|
|
|
|
DummyAppUpLong,
|
2024-08-10 14:22:33 +03:00
|
|
|
DummyAppDownShort,
|
2023-08-17 13:40:55 +03:00
|
|
|
DummyAppDownLong,
|
2024-08-10 14:22:33 +03:00
|
|
|
DummyAppOkShort,
|
2023-08-17 13:40:55 +03:00
|
|
|
DummyAppOkLong,
|
2023-08-17 13:04:40 +03:00
|
|
|
|
|
|
|
|
DummyAppNumber,
|
|
|
|
|
} DummyAppShortcut;
|
|
|
|
|
|
2021-10-26 21:34:31 +03:00
|
|
|
typedef struct {
|
2024-08-10 13:18:51 +03:00
|
|
|
char name_or_path[128];
|
2022-10-09 05:18:24 +03:00
|
|
|
} FavoriteApp;
|
|
|
|
|
|
|
|
|
|
typedef struct {
|
2022-04-14 15:20:41 +03:00
|
|
|
uint32_t auto_lock_delay_ms;
|
2022-09-08 18:24:25 +03:00
|
|
|
uint8_t displayBatteryPercentage;
|
2022-09-17 00:43:21 +03:00
|
|
|
uint8_t dummy_mode;
|
2023-05-23 22:47:15 +03:00
|
|
|
uint8_t display_clock;
|
2023-08-17 13:04:40 +03:00
|
|
|
FavoriteApp favorite_apps[FavoriteAppNumber];
|
|
|
|
|
FavoriteApp dummy_apps[DummyAppNumber];
|
2021-09-28 12:40:39 +03:00
|
|
|
} DesktopSettings;
|
2024-08-10 13:18:51 +03:00
|
|
|
|
|
|
|
|
void desktop_settings_load(DesktopSettings* settings);
|
|
|
|
|
void desktop_settings_save(const DesktopSettings* settings);
|