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_test_conf.h (686B)
1 /** 2 * @file lv_test_conf.h 3 * 4 */ 5 6 #ifndef LV_TEST_CONF_H 7 #define LV_TEST_CONF_H 8 9 #define LV_CONF_SUPPRESS_DEFINE_CHECK 1 10 11 #ifdef __cplusplus 12 extern "C" { 13 #endif 14 15 /********************* 16 * INCLUDES 17 *********************/ 18 19 /********************* 20 * DEFINES 21 *********************/ 22 23 /********************** 24 * TYPEDEFS 25 **********************/ 26 27 uint32_t custom_tick_get(void); 28 #define LV_TICK_CUSTOM_SYS_TIME_EXPR custom_tick_get() 29 30 typedef void * lv_user_data_t; 31 32 /********************** 33 * GLOBAL PROTOTYPES 34 **********************/ 35 36 /********************** 37 * MACROS 38 **********************/ 39 40 #ifdef __cplusplus 41 } /*extern "C"*/ 42 #endif 43 44 #endif /*LV_TEST_CONF_H*/