zephyr/tests/lib/gui/lvgl/testcase.yaml
Fabian Blatz c7f8033f2b modules: lvgl: simplify sys_heap memory size configs
Changes the Kconfig symbols for the sys_heap based memory management option
and removes the notion of `BLOCKS` with a more concise single
`LV_Z_MEM_POOL_SIZE` option. Also adds `LV_MEM_CUSTOM` to the lv_conf.h,
since in any option the memory management is considered to be custom.

Signed-off-by: Fabian Blatz <fabianblatz@gmail.com>
2023-09-27 09:54:08 +02:00

55 lines
1.3 KiB
YAML

tests:
libraries.gui.lvgl:
tags:
- display
- gui
platform_allow: native_posix_64
libraries.gui.lvgl.dynamic.heap.libc:
filter: TOOLCHAIN_HAS_NEWLIB == 1
tags:
- display
- gui
platform_allow: native_posix_64
extra_configs:
- CONFIG_NEWLIB_LIBC=y
- CONFIG_LV_Z_BUFFER_ALLOC_DYNAMIC=y
- CONFIG_LV_Z_MEM_POOL_HEAP_LIB_C=y
libraries.gui.lvgl.dynamic.pool.sys_heap:
tags:
- display
- gui
platform_allow: native_posix_64
extra_configs:
- CONFIG_LV_Z_BUFFER_ALLOC_DYNAMIC=y
- CONFIG_LV_Z_MEM_POOL_SYS_HEAP=y
- CONFIG_LV_Z_MEM_POOL_SIZE=98304
libraries.gui.lvgl.16bit:
tags:
- display
- gui
platform_allow: native_posix_64
extra_configs:
- CONFIG_LV_COLOR_DEPTH_16=y
libraries.gui.lvgl.8bit:
tags:
- display
- gui
platform_allow: native_posix_64
extra_configs:
- CONFIG_LV_COLOR_DEPTH_8=y
libraries.gui.lvgl.mono:
tags:
- display
- gui
platform_allow: native_posix_64
extra_configs:
- CONFIG_LV_COLOR_DEPTH_1=y
libraries.gui.lvgl.16bit.swap:
tags:
- display
- gui
platform_allow: native_posix_64
extra_configs:
- CONFIG_LV_COLOR_DEPTH_16=y
- CONFIG_LV_COLOR_16_SWAP=y