mirror of
https://gitee.com/peng_zhihui/HoloCubic
synced 2025-11-04 21:19:40 +08:00
34 lines
469 B
C
34 lines
469 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*/
|
|
|
|
|
|
#ifndef LV_PORT_INDEV_TEMPL_H
|
|
#define LV_PORT_INDEV_TEMPL_H
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
/*********************
|
|
* INCLUDES
|
|
*********************/
|
|
#include "lvgl.h"
|
|
|
|
extern lv_indev_t* indev_encoder;
|
|
|
|
void lv_port_indev_init(void);
|
|
|
|
|
|
#ifdef __cplusplus
|
|
} /* extern "C" */
|
|
#endif
|
|
|
|
#endif /*LV_PORT_INDEV_TEMPL_H*/
|
|
|
|
|