From 454f555e7563eea48226174e9f83be7ef2eb2752 Mon Sep 17 00:00:00 2001 From: Gabor Kiss-Vamosi Date: Tue, 19 Dec 2023 12:30:28 +0100 Subject: [PATCH] use MICROPY_LV_USE_LOG to disable logs --- lv_conf.h | 5 +++++ lvgl | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/lv_conf.h b/lv_conf.h index c6065eff7..47937505b 100644 --- a/lv_conf.h +++ b/lv_conf.h @@ -157,7 +157,12 @@ *-----------*/ /*Enable the log module*/ +#ifdef MICROPY_LV_USE_LOG +#define LV_USE_LOG MICROPY_LV_USE_LOG +#else #define LV_USE_LOG 1 +#endif + #if LV_USE_LOG /*How important log should be added: diff --git a/lvgl b/lvgl index e455f7e91..d06f316fc 160000 --- a/lvgl +++ b/lvgl @@ -1 +1 @@ -Subproject commit e455f7e91adb3521f8017677d56e3b64dff694fe +Subproject commit d06f316fcb905c0087cbb9baadd70175146836c0