7a7b31e426
* T-Deck stability and naming improvements * allow main task to clean itself up * remove unused includes * various lvgl improvements * added docs
15 lines
185 B
C
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 |