Skip to content

Commit 7c98319

Browse files
Limited LVGL memory size to 15*1024 bytes
1 parent 01ed264 commit 7c98319

File tree

1 file changed

+1
-1
lines changed
  • Firmware/graphics/lvgl_lib/lvgl_library

1 file changed

+1
-1
lines changed

Firmware/graphics/lvgl_lib/lvgl_library/lv_conf.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ typedef int16_t lv_coord_t;
8080
#define LV_MEM_CUSTOM 0
8181
#if LV_MEM_CUSTOM == 0
8282
/* Size of the memory used by `lv_mem_alloc` in bytes (>= 2kB)*/
83-
# define LV_MEM_SIZE (77U * 1024U) // (256 * 1024)
83+
# define LV_MEM_SIZE (15U * 1024U) // (256 * 1024)
8484

8585
/* Compiler prefix for a big array declaration */
8686
# define LV_MEM_ATTR

0 commit comments

Comments
 (0)