From 8d2857b15cfa939cdb7c60a090b759be11c25631 Mon Sep 17 00:00:00 2001 From: wangyz1997 Date: Fri, 4 Oct 2024 20:06:33 +0800 Subject: [PATCH] stm32f103_lvgl_8080lcd: fix compilation error --- stm32f103_lvgl_8080lcd/Core/Inc/lv_conf.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stm32f103_lvgl_8080lcd/Core/Inc/lv_conf.h b/stm32f103_lvgl_8080lcd/Core/Inc/lv_conf.h index e6648fe..23ce20a 100644 --- a/stm32f103_lvgl_8080lcd/Core/Inc/lv_conf.h +++ b/stm32f103_lvgl_8080lcd/Core/Inc/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 (18U * 1024U) /*[bytes]*/ +# define LV_MEM_SIZE (16U * 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*/