Files
tactility/app-sim/src/lvgl_task.h
T
Ken Van Hoeylandt 7a7b31e426 Various improvements (#21)
* T-Deck stability and naming improvements

* allow main task to clean itself up

* remove unused includes

* various lvgl improvements

* added docs
2024-01-27 23:13:17 +01:00

15 lines
185 B
C

#pragma once
#include <stdbool.h>
#ifdef __cplusplus
extern "C" {
#endif
void lvgl_task_start();
bool lvgl_task_is_running();
void lvgl_task_interrupt();
#ifdef __cplusplus
}
#endif