mirror of
https://gitee.com/Vancouver2017/luban-lite-t3e-pro.git
synced 2025-12-14 02:18:54 +00:00
41 lines
938 B
Plaintext
41 lines
938 B
Plaintext
# Kconfig file for package LVGL
|
|
menuconfig LPKG_USING_LVGL
|
|
bool "LVGL (official): powerful and easy-to-use embedded GUI library"
|
|
default n
|
|
|
|
if LPKG_USING_LVGL
|
|
|
|
config LPKG_LVGL_PATH
|
|
string
|
|
default "/packages/multimedia/LVGL/LVGL"
|
|
|
|
config LPKG_LVGL_THREAD_PRIO
|
|
int "Priority of LVGL thread"
|
|
default 20
|
|
|
|
config LPKG_LVGL_THREAD_STACK_SIZE
|
|
int "Stack size of LVGL thread"
|
|
default 4096
|
|
|
|
config LPKG_LVGL_DISP_REFR_PERIOD
|
|
int "Display refresh period (ms)"
|
|
default 5 # official suggestion
|
|
|
|
config LPKG_USING_LVGL_SQUARELINE
|
|
bool "Support SquareLine Studio"
|
|
default n
|
|
|
|
config LPKG_LVGL_USING_EXAMPLES
|
|
bool "Enable built-in examples"
|
|
default n
|
|
|
|
config LPKG_LVGL_USING_DEMOS
|
|
bool "Enable built-in demos"
|
|
default n
|
|
|
|
endif
|
|
|
|
menuconfig LPKG_USING_LV_MUSIC_DEMO
|
|
bool "lvgl music demo"
|
|
default n
|