update lv_conf_internal.h

This commit is contained in:
Gabor Kiss-Vamosi
2021-03-01 12:03:46 +01:00
parent 27025ee6f9
commit 2f0443b803
2 changed files with 60 additions and 4 deletions

View File

@@ -153,8 +153,15 @@ e.g. "stm32f769xx.h" or "stm32f429xx.h" */
# define LV_LOG_PRINTF 1 # define LV_LOG_PRINTF 1
/*Enable/disable LV_LOG_TRACE in modules that produces a huge number of logs */ /*Enable/disable LV_LOG_TRACE in modules that produces a huge number of logs */
#define LV_LOG_TRACE_MEM 0 # define LV_LOG_TRACE_MEM 1
#define LV_LOG_TRACE_TIMER 0 # define LV_LOG_TRACE_TIMER 1
# define LV_LOG_TRACE_INDEV 1
# define LV_LOG_TRACE_DISP_REFR 1
# define LV_LOG_TRACE_EVENT 1
# define LV_LOG_TRACE_SIGNAL 1
# define LV_LOG_TRACE_OBJ_CREATE 1
# define LV_LOG_TRACE_LAYOUT 1
# define LV_LOG_TRACE_ANIM 1
#endif /*LV_USE_LOG*/ #endif /*LV_USE_LOG*/

View File

@@ -367,14 +367,63 @@ e.g. "stm32f769xx.h" or "stm32f429xx.h" */
# ifdef CONFIG_LV_LOG_TRACE_MEM # ifdef CONFIG_LV_LOG_TRACE_MEM
# define LV_LOG_TRACE_MEM CONFIG_LV_LOG_TRACE_MEM # define LV_LOG_TRACE_MEM CONFIG_LV_LOG_TRACE_MEM
# else # else
# define LV_LOG_TRACE_MEM 0 # define LV_LOG_TRACE_MEM 1
# endif # endif
#endif #endif
#ifndef LV_LOG_TRACE_TIMER #ifndef LV_LOG_TRACE_TIMER
# ifdef CONFIG_LV_LOG_TRACE_TIMER # ifdef CONFIG_LV_LOG_TRACE_TIMER
# define LV_LOG_TRACE_TIMER CONFIG_LV_LOG_TRACE_TIMER # define LV_LOG_TRACE_TIMER CONFIG_LV_LOG_TRACE_TIMER
# else # else
# define LV_LOG_TRACE_TIMER 0 # define LV_LOG_TRACE_TIMER 1
# endif
#endif
#ifndef LV_LOG_TRACE_INDEV
# ifdef CONFIG_LV_LOG_TRACE_INDEV
# define LV_LOG_TRACE_INDEV CONFIG_LV_LOG_TRACE_INDEV
# else
# define LV_LOG_TRACE_INDEV 1
# endif
#endif
#ifndef LV_LOG_TRACE_DISP_REFR
# ifdef CONFIG_LV_LOG_TRACE_DISP_REFR
# define LV_LOG_TRACE_DISP_REFR CONFIG_LV_LOG_TRACE_DISP_REFR
# else
# define LV_LOG_TRACE_DISP_REFR 1
# endif
#endif
#ifndef LV_LOG_TRACE_EVENT
# ifdef CONFIG_LV_LOG_TRACE_EVENT
# define LV_LOG_TRACE_EVENT CONFIG_LV_LOG_TRACE_EVENT
# else
# define LV_LOG_TRACE_EVENT 1
# endif
#endif
#ifndef LV_LOG_TRACE_SIGNAL
# ifdef CONFIG_LV_LOG_TRACE_SIGNAL
# define LV_LOG_TRACE_SIGNAL CONFIG_LV_LOG_TRACE_SIGNAL
# else
# define LV_LOG_TRACE_SIGNAL 1
# endif
#endif
#ifndef LV_LOG_TRACE_OBJ_CREATE
# ifdef CONFIG_LV_LOG_TRACE_OBJ_CREATE
# define LV_LOG_TRACE_OBJ_CREATE CONFIG_LV_LOG_TRACE_OBJ_CREATE
# else
# define LV_LOG_TRACE_OBJ_CREATE 1
# endif
#endif
#ifndef LV_LOG_TRACE_LAYOUT
# ifdef CONFIG_LV_LOG_TRACE_LAYOUT
# define LV_LOG_TRACE_LAYOUT CONFIG_LV_LOG_TRACE_LAYOUT
# else
# define LV_LOG_TRACE_LAYOUT 1
# endif
#endif
#ifndef LV_LOG_TRACE_ANIM
# ifdef CONFIG_LV_LOG_TRACE_ANIM
# define LV_LOG_TRACE_ANIM CONFIG_LV_LOG_TRACE_ANIM
# else
# define LV_LOG_TRACE_ANIM 1
# endif # endif
#endif #endif