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