Files
lcd_model/GUI/lvgl/porting/lv_port_indev.h
T

50 lines
791 B
C
Raw Normal View History

2025-06-20 11:24:14 +08:00
2025-06-18 12:20:53 +08:00
/**
2025-06-20 11:24:14 +08:00
* @file lv_port_indev_templ.h
2025-06-18 12:20:53 +08:00
*
*/
2025-06-20 11:24:14 +08:00
/*Copy this file as "lv_port_indev.h" and set this value to "1" to enable content*/
#if 1
2025-12-04 21:06:43 +08:00
#ifndef LV_PORT_INDEV_H
#define LV_PORT_INDEV_H
2025-06-18 12:20:53 +08:00
#ifdef __cplusplus
extern "C" {
#endif
/*********************
* INCLUDES
*********************/
2025-06-20 11:24:14 +08:00
#if defined(LV_LVGL_H_INCLUDE_SIMPLE)
#include "lvgl.h"
#else
#include "lvgl/lvgl.h"
#endif
2025-06-18 12:20:53 +08:00
/*********************
* DEFINES
*********************/
/**********************
* TYPEDEFS
**********************/
/**********************
* GLOBAL PROTOTYPES
**********************/
2025-06-20 11:24:14 +08:00
void lv_port_indev_init(void);
2025-06-18 12:20:53 +08:00
/**********************
* MACROS
**********************/
#ifdef __cplusplus
} /*extern "C"*/
#endif
2025-06-20 11:24:14 +08:00
#endif /*LV_PORT_INDEV_TEMPL_H*/
#endif /*Disable/Enable content*/