acid-drop

- Hacking the planet from a LilyGo T-Deck using custom firmware
git clone git://git.acid.vegas/acid-drop.git
Log | Files | Refs | Archive | README | LICENSE

lv_port_indev_template.h (734B)

      1 
      2 /**
      3  * @file lv_port_indev_templ.h
      4  *
      5  */
      6 
      7 /*Copy this file as "lv_port_indev.h" and set this value to "1" to enable content*/
      8 #if 0
      9 
     10 #ifndef LV_PORT_INDEV_TEMPL_H
     11 #define LV_PORT_INDEV_TEMPL_H
     12 
     13 #ifdef __cplusplus
     14 extern "C" {
     15 #endif
     16 
     17 /*********************
     18  *      INCLUDES
     19  *********************/
     20 #include "lvgl/lvgl.h"
     21 
     22 /*********************
     23  *      DEFINES
     24  *********************/
     25 
     26 /**********************
     27  *      TYPEDEFS
     28  **********************/
     29 
     30 /**********************
     31  * GLOBAL PROTOTYPES
     32  **********************/
     33 void lv_port_indev_init(void);
     34 
     35 /**********************
     36  *      MACROS
     37  **********************/
     38 
     39 #ifdef __cplusplus
     40 } /*extern "C"*/
     41 #endif
     42 
     43 #endif /*LV_PORT_INDEV_TEMPL_H*/
     44 
     45 #endif /*Disable/Enable content*/