diff --git a/lv_conf_template.h b/lv_conf_template.h index 31ddf24d0..465ea7aa0 100644 --- a/lv_conf_template.h +++ b/lv_conf_template.h @@ -42,7 +42,7 @@ #if LV_USE_STDLIB_MALLOC == LV_STDLIB_BUILTIN /*Size of the memory available for `lv_malloc()` in bytes (>= 2kB)*/ - #define LV_MEM_SIZE (256 * 1024U) /*[bytes]*/ + #define LV_MEM_SIZE (64 * 1024U) /*[bytes]*/ /*Size of the memory expand for `lv_malloc()` in bytes*/ #define LV_MEM_POOL_EXPAND_SIZE 0 @@ -170,7 +170,7 @@ #define LV_USE_DRAW_VG_LITE 0 #if LV_USE_DRAW_VG_LITE -/* Enbale VG-Lite custom external 'gpu_init()' function */ +/* Enable VG-Lite custom external 'gpu_init()' function */ #define LV_VG_LITE_USE_GPU_INIT 0 /* Enable VG-Lite assert. */ diff --git a/src/lv_conf_internal.h b/src/lv_conf_internal.h index fe5cfb163..3d3df001b 100644 --- a/src/lv_conf_internal.h +++ b/src/lv_conf_internal.h @@ -126,7 +126,7 @@ #ifdef CONFIG_LV_MEM_SIZE #define LV_MEM_SIZE CONFIG_LV_MEM_SIZE #else - #define LV_MEM_SIZE (256 * 1024U) /*[bytes]*/ + #define LV_MEM_SIZE (64 * 1024U) /*[bytes]*/ #endif #endif @@ -444,7 +444,7 @@ #endif #if LV_USE_DRAW_VG_LITE -/* Enbale VG-Lite custom external 'gpu_init()' function */ +/* Enable VG-Lite custom external 'gpu_init()' function */ #ifndef LV_VG_LITE_USE_GPU_INIT #ifdef CONFIG_LV_VG_LITE_USE_GPU_INIT #define LV_VG_LITE_USE_GPU_INIT CONFIG_LV_VG_LITE_USE_GPU_INIT