* Add Auto Lock Time setting * Update .gitignore * Add value_index toolbox module * Auto locking basic implementation * Better AutoLock implementation, edge cases and cleanup * Fix NULL pointer crash * Turn off backlight shortly in locked mode * Re-enable auto lock after pin lock * Correctly handle start when pin locked * Use timer to hide locked hint * Use a single state variable instead of multiple bools * Do not call update callback recursively * Allow input when the Unlocked hint is shown * Add a delay to backlight switch off while locking * Better user input handling * Switch backlight off after pin timeout * Correct grammar in notification settings Co-authored-by: あく <alleteam@gmail.com>
		
			
				
	
	
		
			56 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			56 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
#pragma once
 | 
						|
 | 
						|
#include <furi_hal.h>
 | 
						|
#include <stdint.h>
 | 
						|
#include <stdbool.h>
 | 
						|
#include <toolbox/saved_struct.h>
 | 
						|
 | 
						|
#define DESKTOP_SETTINGS_VER (2)
 | 
						|
#define DESKTOP_SETTINGS_PATH "/int/desktop.settings"
 | 
						|
#define DESKTOP_SETTINGS_MAGIC (0x17)
 | 
						|
#define PIN_MAX_LENGTH 12
 | 
						|
 | 
						|
#define DESKTOP_SETTINGS_RUN_PIN_SETUP_ARG "run_pin_setup"
 | 
						|
 | 
						|
#define SAVE_DESKTOP_SETTINGS(x) \
 | 
						|
    saved_struct_save(           \
 | 
						|
        DESKTOP_SETTINGS_PATH,   \
 | 
						|
        (x),                     \
 | 
						|
        sizeof(DesktopSettings), \
 | 
						|
        DESKTOP_SETTINGS_MAGIC,  \
 | 
						|
        DESKTOP_SETTINGS_VER)
 | 
						|
 | 
						|
#define LOAD_DESKTOP_SETTINGS(x) \
 | 
						|
    saved_struct_load(           \
 | 
						|
        DESKTOP_SETTINGS_PATH,   \
 | 
						|
        (x),                     \
 | 
						|
        sizeof(DesktopSettings), \
 | 
						|
        DESKTOP_SETTINGS_MAGIC,  \
 | 
						|
        DESKTOP_SETTINGS_VER)
 | 
						|
 | 
						|
#define MAX_PIN_SIZE 10
 | 
						|
#define MIN_PIN_SIZE 4
 | 
						|
 | 
						|
typedef struct {
 | 
						|
    InputKey data[MAX_PIN_SIZE];
 | 
						|
    uint8_t length;
 | 
						|
} PinCode;
 | 
						|
 | 
						|
typedef struct {
 | 
						|
    uint16_t favorite;
 | 
						|
    PinCode pin_code;
 | 
						|
    uint32_t auto_lock_delay_ms;
 | 
						|
} DesktopSettings;
 | 
						|
 | 
						|
static inline bool pins_are_equal(const PinCode* pin_code1, const PinCode* pin_code2) {
 | 
						|
    furi_assert(pin_code1);
 | 
						|
    furi_assert(pin_code2);
 | 
						|
    bool result = false;
 | 
						|
 | 
						|
    if(pin_code1->length == pin_code2->length) {
 | 
						|
        result = !memcmp(pin_code1->data, pin_code2->data, pin_code1->length);
 | 
						|
    }
 | 
						|
 | 
						|
    return result;
 | 
						|
}
 |