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 void lv_test_assert_fail(void); 24 #define LV_ASSERT_HANDLER lv_test_assert_fail(); 25 26 /********************** 27 * TYPEDEFS 28 **********************/ 29 30 uint32_t custom_tick_get(void); 31 #define LV_TICK_CUSTOM_SYS_TIME_EXPR custom_tick_get() 32 33 typedef void * lv_user_data_t; 34 35 /********************** 36 * GLOBAL PROTOTYPES 37 **********************/ 38 39 /********************** 40 * MACROS 41 **********************/ 42 43 #ifdef __cplusplus 44 } /*extern "C"*/ 45 #endif 46 47 #endif /*LV_TEST_CONF_H*/ 48