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>
10 lines
313 B
C
10 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);
|