| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- /**
- * @file lv_port_indev_templ.h
- *
- */
- /*Copy this file as "lv_port_indev.h" and set this value to "1" to enable content*/
- #if 1
- #ifndef LV_PORT_INDEV_TEMPL_H
- #define LV_PORT_INDEV_TEMPL_H
- #ifdef __cplusplus
- extern "C" {
- #endif
- /*********************
- * INCLUDES
- *********************/
- #if defined(LV_LVGL_H_INCLUDE_SIMPLE)
- #include "lvgl.h"
- #else
- #include "../lvgl.h"
- #endif
- #include "luat_tp.h"
- /*********************
- * DEFINES
- *********************/
- /**********************
- * TYPEDEFS
- **********************/
- /**********************
- * GLOBAL PROTOTYPES
- **********************/
- void lv_port_indev_init(luat_tp_config_t *luat_tp_config);
- /**********************
- * MACROS
- **********************/
- #ifdef __cplusplus
- } /*extern "C"*/
- #endif
- #endif /*LV_PORT_INDEV_TEMPL_H*/
- #endif /*Disable/Enable content*/
|