36 lines
632 B
C
36 lines
632 B
C
|
|
/**
|
|
* @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
|
|
|
|
#include "evdev.h"
|
|
|
|
void lv_port_indev_init(int rot);
|
|
lv_group_t *lv_port_indev_group_create(void);
|
|
void lv_port_indev_group_destroy(lv_group_t *group);
|
|
|
|
#if USE_SENSOR
|
|
lv_indev_drv_t *lv_port_indev_get_lsensor_drv(void);
|
|
|
|
lv_indev_drv_t *lv_port_indev_get_psensor_drv(void);
|
|
#endif
|
|
|
|
#ifdef __cplusplus
|
|
} /*extern "C"*/
|
|
#endif
|
|
|
|
#endif /*LV_PORT_INDEV_TEMPL_H*/
|
|
|
|
#endif /*Disable/Enable content*/
|