chore(Kconfig): add version info to Kconfig file to check mismatch (#6789)

Signed-off-by: Neo Xu <neo.xu1990@gmail.com>
This commit is contained in:
Neo Xu
2024-09-20 16:42:16 +08:00
committed by GitHub
parent 57b799f4fc
commit 8dea3225ff
3 changed files with 52 additions and 2 deletions

14
Kconfig
View File

@@ -1527,15 +1527,25 @@ menu "LVGL configuration"
default y
help
This can save some memory, but not much. After the quick access bar is created, it can be hidden by clicking the button at the top left corner of the browsing area, which is very useful for small screen devices.
config LV_USE_FONT_MANAGER
bool "Enable freetype font manager"
depends on LV_USE_FREETYPE
default n
default n
config LV_FONT_MANAGER_NAME_MAX_LEN
int "Font manager name max length"
depends on LV_USE_FONT_MANAGER
default 32
config LVGL_VERSION_MAJOR
int
default 9 # LVGL_VERSION_MAJOR
config LVGL_VERSION_MINOR
int
default 2 # LVGL_VERSION_MINOR
config LVGL_VERSION_PATCH
int
default 0 # LVGL_VERSION_PATCH
endmenu
menu "Devices"