1
0
mirror of https://github.com/lvgl/lvgl.git synced 2025-01-14 06:42:58 +08:00

chore(conf): clean up lv_conf_template.h

This commit is contained in:
Gabor Kiss-Vamosi 2023-10-17 14:19:11 +02:00
parent 4a7f31017e
commit abe89ba1fe
2 changed files with 0 additions and 24 deletions

View File

@ -182,7 +182,6 @@
#define LV_LOG_TRACE_OBJ_CREATE 1
#define LV_LOG_TRACE_LAYOUT 1
#define LV_LOG_TRACE_ANIM 1
#define LV_LOG_TRACE_MSG 1
#define LV_LOG_TRACE_CACHE 1
#endif /*LV_USE_LOG*/
@ -700,9 +699,6 @@
#define LV_IMGFONT_USE_IMAGE_CACHE_HEADER 0
#endif
/*1: Enable a published subscriber based messaging system */
#define LV_USE_MSG 0
/*1: Enable an observer pattern implementation*/
#define LV_USE_OBSERVER 0

View File

@ -504,17 +504,6 @@
#define LV_LOG_TRACE_ANIM 1
#endif
#endif
#ifndef LV_LOG_TRACE_MSG
#ifdef _LV_KCONFIG_PRESENT
#ifdef CONFIG_LV_LOG_TRACE_MSG
#define LV_LOG_TRACE_MSG CONFIG_LV_LOG_TRACE_MSG
#else
#define LV_LOG_TRACE_MSG 0
#endif
#else
#define LV_LOG_TRACE_MSG 1
#endif
#endif
#ifndef LV_LOG_TRACE_CACHE
#ifdef _LV_KCONFIG_PRESENT
#ifdef CONFIG_LV_LOG_TRACE_CACHE
@ -2288,15 +2277,6 @@
#endif
#endif
/*1: Enable a published subscriber based messaging system */
#ifndef LV_USE_MSG
#ifdef CONFIG_LV_USE_MSG
#define LV_USE_MSG CONFIG_LV_USE_MSG
#else
#define LV_USE_MSG 0
#endif
#endif
/*1: Enable an observer pattern implementation*/
#ifndef LV_USE_OBSERVER
#ifdef CONFIG_LV_USE_OBSERVER