zephyr/modules/lvgl
Haiyue Wang f9bff7f32f modules: lvgl: Rename the VDB custom section Kconfig name
There are 4 Kconfig names about the "Draw Buffer". Rename 'VBD' to 'VDB'
in Kconfig option 'LV_Z_*VBD*_CUSTOM_SECTION' to make name consistent.

config LV_Z_VDB_ALIGN
	int "Rending buffer alignment"

config LV_Z_VBD_CUSTOM_SECTION
	bool "Link rendering buffers to custom section"

config LV_Z_DOUBLE_VDB
	bool "Use two rendering buffers"

config LV_Z_VDB_SIZE
	int "Rendering buffer size"
	default 100 if LV_Z_FULL_REFRESH

And the draw buffer definition is now:

	static uint8_t buf0[BUFFER_SIZE]
	#ifdef CONFIG_LV_Z_VDB_CUSTOM_SECTION
		Z_GENERIC_SECTION(.lvgl_buf)
	#endif
			__aligned(CONFIG_LV_Z_VDB_ALIGN);

Signed-off-by: Haiyue Wang <haiyuewa@163.com>
2025-01-06 17:13:29 +00:00
..
include modules: lvgl: Add support for NXP PXP engine 2025-01-04 14:17:10 +01:00
input modules: lvgl: Update gluecode to v9.2 2025-01-04 14:17:10 +01:00
CMakeLists.txt modules: lvgl: Add zephyr OSAL implementation 2025-01-04 14:17:10 +01:00
Kconfig modules: lvgl: Add support for NXP PXP engine 2025-01-04 14:17:10 +01:00
Kconfig.input modules: lvgl: Remove LVGL pointer kscan 2024-06-21 11:54:11 -04:00
Kconfig.memory modules: lvgl: Rename the VDB custom section Kconfig name 2025-01-06 17:13:29 +00:00
Kconfig.shell
lvgl.c modules: lvgl: Rename the VDB custom section Kconfig name 2025-01-06 17:13:29 +00:00
lvgl_display.c modules: lvgl: Update gluecode to v9.2 2025-01-04 14:17:10 +01:00
lvgl_display_16bit.c modules: lvgl: Update gluecode to v9.2 2025-01-04 14:17:10 +01:00
lvgl_display_24bit.c modules: lvgl: Update gluecode to v9.2 2025-01-04 14:17:10 +01:00
lvgl_display_32bit.c modules: lvgl: Update gluecode to v9.2 2025-01-04 14:17:10 +01:00
lvgl_display_mono.c modules: lvgl: Update gluecode to v9.2 2025-01-04 14:17:10 +01:00
lvgl_fs.c modules: lvgl: Update gluecode to v9.2 2025-01-04 14:17:10 +01:00
lvgl_mem.c modules: lvgl: Update gluecode to v9.2 2025-01-04 14:17:10 +01:00
lvgl_shell.c modules: lvgl: Update gluecode to v9.2 2025-01-04 14:17:10 +01:00
lvgl_zephyr_osal.c modules: lvgl: Add zephyr OSAL implementation 2025-01-04 14:17:10 +01:00