Tasmota/lib/libesp32_lvgl/lvgl/src/osal/lv_rtthread.h
s-hadinger ff6be70ce1
LVGL library updated to v9.0.0, some small breaking changes in C, none in HASPmota (#20659)
* LVGL library updated to v9.0.0, some small breaking changes in C, none in HASPmota

* fix compilation

* Move lvgl_berry to LVGL_assets
2024-02-05 12:07:41 +01:00

55 lines
803 B
C

/**
* @file lv_rtthread.h
*
*/
#ifndef LV_RTTHREAD_H
#define LV_RTTHREAD_H
#ifdef __cplusplus
extern "C" {
#endif
/*********************
* INCLUDES
*********************/
#if LV_USE_OS == LV_OS_RTTHREAD
#include <rtthread.h>
#include <stdbool.h>
/*********************
* DEFINES
*********************/
/**********************
* TYPEDEFS
**********************/
typedef struct {
rt_thread_t thread;
} lv_thread_t;
typedef struct {
rt_mutex_t mutex;
} lv_mutex_t;
typedef struct {
rt_sem_t sem;
} lv_thread_sync_t;
/**********************
* GLOBAL PROTOTYPES
**********************/
/**********************
* MACROS
**********************/
#endif /*LV_USE_OS == LV_OS_RTTHREAD*/
#ifdef __cplusplus
} /*extern "C"*/
#endif
#endif /*LV_RTTHREAD_H*/