mirror of
https://github.com/ByteWelder/Tactility.git
synced 2026-02-18 19:03:16 +00:00
- Expose HAL Configuration's `UiScale` - Updated docs - Fix for `tt_timer_alloc()` - Changed `enum class` to regular C `enum` - Renamed enums (add prefix) - Include `<stdbool.h>` where needed
27 lines
503 B
C
27 lines
503 B
C
#pragma once
|
|
|
|
#include <stdbool.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
/** @return true if LVGL is started and active */
|
|
bool tt_lvgl_is_started();
|
|
|
|
/** Start LVGL and related background services */
|
|
void tt_lvgl_start();
|
|
|
|
/** Stop LVGL and related background services */
|
|
void tt_lvgl_stop();
|
|
|
|
/** Lock the LVGL context. Call this before doing LVGL-related operations from a non-LVLG thread */
|
|
void tt_lvgl_lock();
|
|
|
|
/** Unlock the LVGL context */
|
|
void tt_lvgl_unlock();
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|