274c12fc56
* Streams: string stream * String stream: updated insert/delete api * Streams: generic stream interface and string stream implementation * Streams: helpers for insert and delete_and_insert * FFF: now compatible with streams * MinUnit: introduced tests with arguments * FFF: stream access violation * Streams: copy data between streams * Streams: file stream * FFF: documentation * FFStream: documentation * FFF: alloc as file * MinUnit: support for nested tests * Streams: changed delete_and_insert, now it returns success flag. Added ability dump stream inner parameters and data to cout. * FFF: simplified file open function * Streams: unit tests * FFF: tests * Streams: declare cache_size constant as define, to allow variable modified arrays * FFF: lib moved to a separate folder * iButton: new FFF * RFID: new FFF * Animations: new FFF * IR: new FFF * NFC: new FFF * Flipper file format: delete lib * U2F: new FFF * Subghz: new FFF and streams * Streams: read line * Streams: split * FuriCore: implement memset with extra asserts * FuriCore: implement extra heap asserts without inventing memset * Scene manager: protected access to the scene id stack with a size check * NFC worker: dirty fix for issue where hal_nfc was busy on app start * Furi: update allocator to erase memory on allocation. Replace furi_alloc with malloc. * FuriCore: cleanup memmgr code. * Furi HAL: furi_hal_init is split into critical and non-critical parts. The critical part is currently clock and console. * Memmgr: added ability to track allocations and deallocations through console. * FFStream: some speedup * Streams, FF: minor fixes * Tests: restore * File stream: a slightly more thread-safe version of file_stream_delete_and_insert Co-authored-by: Aleksandr Kutuzov <alleteam@gmail.com>
110 lines
3.0 KiB
C
110 lines
3.0 KiB
C
|
|
#include <furi.h>
|
|
#include <stdint.h>
|
|
#include <stdio.h>
|
|
#include <FreeRTOS.h>
|
|
#include <portmacro.h>
|
|
#include <projdefs.h>
|
|
#include <input/input.h>
|
|
#include <gui/canvas.h>
|
|
#include <gui/view.h>
|
|
|
|
#include "desktop_view_pin_timeout.h"
|
|
|
|
struct DesktopViewPinTimeout {
|
|
View* view;
|
|
TimerHandle_t timer;
|
|
DesktopViewPinTimeoutDoneCallback callback;
|
|
void* context;
|
|
};
|
|
|
|
typedef struct {
|
|
uint32_t time_left;
|
|
} DesktopViewPinTimeoutModel;
|
|
|
|
void desktop_view_pin_timeout_set_callback(
|
|
DesktopViewPinTimeout* instance,
|
|
DesktopViewPinTimeoutDoneCallback callback,
|
|
void* context) {
|
|
furi_assert(instance);
|
|
|
|
instance->callback = callback;
|
|
instance->context = context;
|
|
}
|
|
|
|
static void desktop_view_pin_timeout_timer_callback(TimerHandle_t timer) {
|
|
DesktopViewPinTimeout* instance = pvTimerGetTimerID(timer);
|
|
bool stop = false;
|
|
|
|
DesktopViewPinTimeoutModel* model = view_get_model(instance->view);
|
|
if(model->time_left > 0) {
|
|
--model->time_left;
|
|
} else {
|
|
stop = true;
|
|
}
|
|
view_commit_model(instance->view, true);
|
|
|
|
if(stop) {
|
|
xTimerStop(instance->timer, portMAX_DELAY);
|
|
instance->callback(instance->context);
|
|
}
|
|
}
|
|
|
|
static bool desktop_view_pin_timeout_input(InputEvent* event, void* context) {
|
|
return true;
|
|
}
|
|
|
|
static void desktop_view_pin_timeout_draw(Canvas* canvas, void* _model) {
|
|
furi_assert(canvas);
|
|
furi_assert(_model);
|
|
|
|
DesktopViewPinTimeoutModel* model = _model;
|
|
|
|
canvas_set_font(canvas, FontPrimary);
|
|
canvas_draw_str(canvas, 36, 31, "Wrong PIN!");
|
|
|
|
canvas_set_font(canvas, FontSecondary);
|
|
char str[30] = {0};
|
|
snprintf(str, sizeof(str), "Timeout: %lds", model->time_left);
|
|
canvas_draw_str_aligned(canvas, 64, 38, AlignCenter, AlignCenter, str);
|
|
}
|
|
|
|
void desktop_view_pin_timeout_free(DesktopViewPinTimeout* instance) {
|
|
view_free(instance->view);
|
|
xTimerDelete(instance->timer, portMAX_DELAY);
|
|
|
|
free(instance);
|
|
}
|
|
|
|
DesktopViewPinTimeout* desktop_view_pin_timeout_alloc(void) {
|
|
DesktopViewPinTimeout* instance = malloc(sizeof(DesktopViewPinTimeout));
|
|
instance->timer = xTimerCreate(
|
|
NULL, pdMS_TO_TICKS(1000), pdTRUE, instance, desktop_view_pin_timeout_timer_callback);
|
|
|
|
instance->view = view_alloc();
|
|
view_allocate_model(instance->view, ViewModelTypeLockFree, sizeof(DesktopViewPinTimeoutModel));
|
|
|
|
view_set_context(instance->view, instance);
|
|
view_set_draw_callback(instance->view, desktop_view_pin_timeout_draw);
|
|
view_set_input_callback(instance->view, desktop_view_pin_timeout_input);
|
|
|
|
return instance;
|
|
}
|
|
|
|
void desktop_view_pin_timeout_start(DesktopViewPinTimeout* instance, uint32_t time_left) {
|
|
furi_assert(instance);
|
|
|
|
DesktopViewPinTimeoutModel* model = view_get_model(instance->view);
|
|
// no race - always called when timer is stopped
|
|
model->time_left = time_left;
|
|
view_commit_model(instance->view, true);
|
|
|
|
xTimerStart(instance->timer, portMAX_DELAY);
|
|
}
|
|
|
|
View* desktop_view_pin_timeout_get_view(DesktopViewPinTimeout* instance) {
|
|
furi_assert(instance);
|
|
|
|
return instance->view;
|
|
}
|