add lv_anim_value_t to lv_conf_templ.h

This commit is contained in:
Gabor Kiss-Vamosi 2019-06-20 18:45:23 +02:00
parent 68f28d1fda
commit a63c5eb968

View File

@ -126,7 +126,12 @@ typedef int16_t lv_coord_t;
/*1: Enable the Animations */
#define LV_USE_ANIMATION 1
#if LV_USE_ANIMATION
/*Declare the type of the user data of animations (can be e.g. `void *`, `int`, `struct`)*/
typedef void * lv_anim_user_data_t;
/*Type of the animated value*/
typedef int16_t lv_anim_value_t;
#endif
/* 1: Enable shadow drawing*/