mirror of
https://github.com/DarkFlippers/unleashed-firmware
synced 2024-11-24 05:23:06 +00:00
21ac37a6f6
* [Fl-2152] New PIN Lock, part 1 * Fix errors & leaks, renaming * Add support to f6 * Fix error, remove duplicate code * Fix drawing corners of Lock Popup * FuriHal: insomnia if usb connected * Applications: cleanup timers use Co-authored-by: Aleksandr Kutuzov <alleteam@gmail.com>
9 lines
313 B
C
9 lines
313 B
C
#pragma once
|
|
#include <stdbool.h>
|
|
#include <stdint.h>
|
|
#include "desktop.h"
|
|
|
|
void desktop_helpers_emit_error_notification();
|
|
void desktop_helpers_lock_system(Desktop* desktop, bool hard_lock);
|
|
void desktop_helpers_unlock_system(Desktop* desktop);
|
|
uint32_t desktop_helpers_get_pin_fail_timeout(uint32_t pin_fails);
|