Files
lvgl/src/lv_api_map.h
Gabor Kiss-Vamosi be72cad1c8 fix build errors
2020-11-24 18:15:47 +01:00

44 lines
644 B
C

/**
* @file lv_api_map.h
*
*/
#ifndef LV_API_MAP_H
#define LV_API_MAP_H
#ifdef __cplusplus
extern "C" {
#endif
/*********************
* INCLUDES
*********************/
#include "../lvgl.h"
/*********************
* DEFINES
*********************/
/**********************
* TYPEDEFS
**********************/
/**********************
* GLOBAL PROTOTYPES
**********************/
static inline LV_ATTRIBUTE_TMR_HANDLER uint32_t lv_task_handler(void)
{
return lv_tmr_handler();
}
/**********************
* MACROS
**********************/
#ifdef __cplusplus
} /* extern "C" */
#endif
#endif /*LV_API_MAP_H*/