* Fix "lv_timer.h" includes * Kick CI * Merge incoming changes * refactor(scroll): lv_obj_scroll_to_obj -> lv_obj_scroll_to_child * kick CI Co-authored-by: fvanroie <cpt_jack@msn.com> Co-authored-by: embeddedt <42941056+embeddedt@users.noreply.github.com> Co-authored-by: Gabor Kiss-Vamosi <kisvegabor@gmail.com>
45 lines
649 B
C
45 lines
649 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_TIMER_HANDLER uint32_t lv_task_handler(void)
|
|
{
|
|
return lv_timer_handler();
|
|
}
|
|
|
|
/**********************
|
|
* MACROS
|
|
**********************/
|
|
|
|
#ifdef __cplusplus
|
|
} /* extern "C" */
|
|
#endif
|
|
|
|
#endif /*LV_API_MAP_H*/
|