2021-09-28 09:40:39 +00:00
|
|
|
#pragma once
|
|
|
|
|
2022-07-26 12:21:51 +00:00
|
|
|
#include "desktop_settings_filename.h"
|
|
|
|
|
2022-02-10 18:17:41 +00:00
|
|
|
#include <furi_hal.h>
|
2021-09-28 09:40:39 +00:00
|
|
|
#include <stdint.h>
|
|
|
|
#include <stdbool.h>
|
2021-11-03 17:22:49 +00:00
|
|
|
#include <toolbox/saved_struct.h>
|
2022-07-26 12:21:51 +00:00
|
|
|
#include <storage/storage.h>
|
2021-09-28 09:40:39 +00:00
|
|
|
|
2023-08-17 10:04:40 +00:00
|
|
|
#define DESKTOP_SETTINGS_VER (13)
|
2022-07-26 12:21:51 +00:00
|
|
|
|
|
|
|
#define DESKTOP_SETTINGS_PATH INT_PATH(DESKTOP_SETTINGS_FILE_NAME)
|
2021-11-03 17:22:49 +00:00
|
|
|
#define DESKTOP_SETTINGS_MAGIC (0x17)
|
2021-10-26 18:34:31 +00:00
|
|
|
#define PIN_MAX_LENGTH 12
|
|
|
|
|
2022-02-10 18:17:41 +00:00
|
|
|
#define DESKTOP_SETTINGS_RUN_PIN_SETUP_ARG "run_pin_setup"
|
|
|
|
|
2022-09-16 21:43:21 +00:00
|
|
|
#define DESKTOP_SETTINGS_SAVE(x) \
|
2021-11-03 17:22:49 +00:00
|
|
|
saved_struct_save( \
|
|
|
|
DESKTOP_SETTINGS_PATH, \
|
|
|
|
(x), \
|
|
|
|
sizeof(DesktopSettings), \
|
|
|
|
DESKTOP_SETTINGS_MAGIC, \
|
|
|
|
DESKTOP_SETTINGS_VER)
|
|
|
|
|
2022-09-16 21:43:21 +00:00
|
|
|
#define DESKTOP_SETTINGS_LOAD(x) \
|
2021-11-03 17:22:49 +00:00
|
|
|
saved_struct_load( \
|
|
|
|
DESKTOP_SETTINGS_PATH, \
|
|
|
|
(x), \
|
|
|
|
sizeof(DesktopSettings), \
|
|
|
|
DESKTOP_SETTINGS_MAGIC, \
|
|
|
|
DESKTOP_SETTINGS_VER)
|
|
|
|
|
2022-02-10 18:17:41 +00:00
|
|
|
#define MAX_PIN_SIZE 10
|
|
|
|
#define MIN_PIN_SIZE 4
|
2022-10-09 02:18:24 +00:00
|
|
|
#define MAX_APP_LENGTH 128
|
|
|
|
|
2023-01-09 14:15:00 +00:00
|
|
|
#define DISPLAY_BATTERY_BAR 0
|
|
|
|
#define DISPLAY_BATTERY_PERCENT 1
|
|
|
|
#define DISPLAY_BATTERY_INVERTED_PERCENT 2
|
|
|
|
#define DISPLAY_BATTERY_RETRO_3 3
|
|
|
|
#define DISPLAY_BATTERY_RETRO_5 4
|
|
|
|
#define DISPLAY_BATTERY_BAR_PERCENT 5
|
|
|
|
|
2023-08-17 10:04:40 +00:00
|
|
|
typedef enum {
|
|
|
|
FavoriteAppLeftShort = 0,
|
|
|
|
FavoriteAppLeftLong,
|
|
|
|
FavoriteAppRightShort,
|
|
|
|
FavoriteAppRightLong,
|
|
|
|
|
|
|
|
FavoriteAppNumber,
|
|
|
|
} FavoriteAppShortcut;
|
|
|
|
|
|
|
|
typedef enum {
|
|
|
|
DummyAppLeft = 0,
|
2023-08-17 10:40:55 +00:00
|
|
|
DummyAppLeftLong,
|
2023-08-17 10:04:40 +00:00
|
|
|
DummyAppRight,
|
2023-08-17 10:40:55 +00:00
|
|
|
DummyAppRightLong,
|
|
|
|
DummyAppUpLong,
|
2023-08-17 10:04:40 +00:00
|
|
|
DummyAppDown,
|
2023-08-17 10:40:55 +00:00
|
|
|
DummyAppDownLong,
|
2023-08-17 10:04:40 +00:00
|
|
|
DummyAppOk,
|
2023-08-17 10:40:55 +00:00
|
|
|
DummyAppOkLong,
|
2023-08-17 10:04:40 +00:00
|
|
|
|
|
|
|
DummyAppNumber,
|
|
|
|
} DummyAppShortcut;
|
|
|
|
|
2021-10-26 18:34:31 +00:00
|
|
|
typedef struct {
|
2022-02-10 18:17:41 +00:00
|
|
|
InputKey data[MAX_PIN_SIZE];
|
2021-10-26 18:34:31 +00:00
|
|
|
uint8_t length;
|
|
|
|
} PinCode;
|
2021-09-28 09:40:39 +00:00
|
|
|
|
|
|
|
typedef struct {
|
2022-10-09 02:18:24 +00:00
|
|
|
char name_or_path[MAX_APP_LENGTH];
|
|
|
|
} FavoriteApp;
|
|
|
|
|
|
|
|
typedef struct {
|
2022-02-10 18:17:41 +00:00
|
|
|
PinCode pin_code;
|
2022-04-14 12:20:41 +00:00
|
|
|
uint32_t auto_lock_delay_ms;
|
2022-09-08 15:24:25 +00:00
|
|
|
uint8_t displayBatteryPercentage;
|
2022-09-16 21:43:21 +00:00
|
|
|
uint8_t dummy_mode;
|
2023-05-23 19:47:15 +00:00
|
|
|
uint8_t display_clock;
|
2023-08-17 10:04:40 +00:00
|
|
|
FavoriteApp favorite_apps[FavoriteAppNumber];
|
|
|
|
FavoriteApp dummy_apps[DummyAppNumber];
|
2021-09-28 09:40:39 +00:00
|
|
|
} DesktopSettings;
|