Home
last modified time | relevance | path

Searched refs:LV_MEM_SIZE (Results 1 – 11 of 11) sorted by relevance

/lvgl-3.5.0/src/misc/
Dlv_mem.c92 tlsf = lv_tlsf_create_with_pool((void *)LV_MEM_POOL_ALLOC(LV_MEM_SIZE), LV_MEM_SIZE); in lv_mem_init()
95 static LV_ATTRIBUTE_LARGE_RAM_ARRAY MEM_UNIT work_mem_int[LV_MEM_SIZE / sizeof(MEM_UNIT)]; in lv_mem_init()
96 tlsf = lv_tlsf_create_with_pool((void *)work_mem_int, LV_MEM_SIZE); in lv_mem_init()
99 tlsf = lv_tlsf_create_with_pool((void *)LV_MEM_ADR, LV_MEM_SIZE); in lv_mem_init()
255 mon_p->total_size = LV_MEM_SIZE; in lv_mem_monitor()
Dlv_tlsf.c13 #define TLSF_MAX_POOL_SIZE LV_MEM_SIZE
/lvgl-3.5.0/tests/src/test_cases/
Dtest_mem.c21 void * buf2 = lv_mem_realloc(buf1, LV_MEM_SIZE + 16384); in test_mem_buf_realloc()
/lvgl-3.5.0/demos/
DREADME.md14 /*Show some widget. It might be required to increase `LV_MEM_SIZE` */
62 For running this demo properly, please make sure **LV_MEM_SIZE** is at least **38KB** (and **48KB**…
/lvgl-3.5.0/env_support/cmsis-pack/
Dlv_conf_cmsis.h45 #define LV_MEM_SIZE (64U * 1024U) /*[bytes]*/ macro
DREADME.md54 Update macro `LV_MEM_SIZE` to `(64*1024U)`.
/lvgl-3.5.0/
Dlv_conf_template.h52 #define LV_MEM_SIZE (48U * 1024U) /*[bytes]*/
/lvgl-3.5.0/docs/intro/
Dindex.md36     Set by <em>LV_MEM_SIZE</em> in <em>lv_conf.h</em>. </li>
145 - Try increasing `LV_MEM_SIZE`.
209 - Reduce `LV_MEM_SIZE` in *lv_conf.h*. This memory is used when you create objects like buttons, la…
210 - To work with lower `LV_MEM_SIZE` you can create objects only when required and delete them when t…
/lvgl-3.5.0/src/
Dlv_conf_internal.h126 #ifndef LV_MEM_SIZE
128 #define LV_MEM_SIZE CONFIG_LV_MEM_SIZE macro
130 #define LV_MEM_SIZE (48U * 1024U) /*[bytes]*/ macro
/lvgl-3.5.0/demos/widgets/
Dlv_demo_widgets.c13 #if LV_MEM_CUSTOM == 0 && LV_MEM_SIZE < (38ul * 1024ul)
14 …#error Insufficient memory for lv_demo_widgets. Please set LV_MEM_SIZE to at least 38KB (38ul * 10…
/lvgl-3.5.0/docs/
DCHANGELOG.md548 - fix: increase default value of LV_MEM_SIZE for lv_demo_widgets #3057 [`3058`](https://github.com/…