linuxOS_D21X/package/artinchip/lvgl-ui/Config.in
2024-11-29 16:33:21 +08:00

52 lines
786 B
Plaintext

menuconfig BR2_PACKAGE_LVGL_UI
bool "lvgl-ui"
default n
if BR2_PACKAGE_LVGL_UI
choice
prompt "Select LVGL Version"
default BR2_LVGL_V_8
config BR2_LVGL_V_8
bool "LVGL V8"
config BR2_LVGL_V_9
bool "LVGL V9"
endchoice
config BR2_TEST_LVGL_USE_RTP
bool "use RTP"
default n
config BR2_LVGL_FB_DMA_NONCOHERENT
bool "use dma noncoherent framebuffer"
default y
help
framebuffer cacheable
config BR2_LVGL_DISPLAY_ROTATE_EN
bool "LVGL enable display rotation"
default n
if BR2_LVGL_DISPLAY_ROTATE_EN
choice
prompt "LVGL rotation degree"
default BR2_LVGL_ROTATE_0
config BR2_LVGL_ROTATE_0
bool "0"
config BR2_LVGL_ROTATE_90
bool "90"
config BR2_LVGL_ROTATE_180
bool "180"
config BR2_LVGL_ROTATE_270
bool "270"
endchoice
endif
endif