From f344268245afea47bc58947977e6b87473a7c94d Mon Sep 17 00:00:00 2001 From: leo Date: Fri, 11 Aug 2023 16:41:02 +0200 Subject: [PATCH] keep ram usage in the allowed range --- Drivers/lv_conf.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Drivers/lv_conf.h b/Drivers/lv_conf.h index f85ac54..ad3403d 100644 --- a/Drivers/lv_conf.h +++ b/Drivers/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 (64U * 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*/