From 5bf4c9d92d7b794af9d78f63688ab46d6eab4f3c Mon Sep 17 00:00:00 2001 From: KlausMu Date: Mon, 12 Feb 2024 18:35:55 +0100 Subject: [PATCH] increased lvgl heap from 32K to 48K --- Platformio/src/gui_general_and_keys/lv_conf.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Platformio/src/gui_general_and_keys/lv_conf.h b/Platformio/src/gui_general_and_keys/lv_conf.h index 2dfb313..60127fd 100644 --- a/Platformio/src/gui_general_and_keys/lv_conf.h +++ b/Platformio/src/gui_general_and_keys/lv_conf.h @@ -49,7 +49,7 @@ #define LV_MEM_CUSTOM 0 #if LV_MEM_CUSTOM == 0 /*Size of the memory available for `lv_mem_alloc()` in bytes (>= 2kB)*/ - #define LV_MEM_SIZE (32U * 1024U) /*[bytes]*/ + #define LV_MEM_SIZE (48U * 1024U) /*[bytes]*/ /*Set an address for the memory pool instead of allocating it as a normal array. Can be in external SRAM too.*/ #define LV_MEM_ADR 0 /*0: unused*/