fix(kconfig): update as per lv_conf_template.h (#5980)
This commit is contained in:
37
Kconfig
37
Kconfig
@@ -211,7 +211,7 @@ menu "LVGL configuration"
|
|||||||
|
|
||||||
config LV_USE_NATIVE_HELIUM_ASM
|
config LV_USE_NATIVE_HELIUM_ASM
|
||||||
bool "Enable native helium assembly"
|
bool "Enable native helium assembly"
|
||||||
default y
|
default n
|
||||||
depends on LV_USE_DRAW_SW
|
depends on LV_USE_DRAW_SW
|
||||||
help
|
help
|
||||||
Disabling this allows arm2d to work on its own (for testing only)
|
Disabling this allows arm2d to work on its own (for testing only)
|
||||||
@@ -927,9 +927,6 @@ menu "LVGL configuration"
|
|||||||
config LV_USE_MSGBOX
|
config LV_USE_MSGBOX
|
||||||
bool "Msgbox"
|
bool "Msgbox"
|
||||||
default y if !LV_CONF_MINIMAL
|
default y if !LV_CONF_MINIMAL
|
||||||
config LV_USE_OBSERVER
|
|
||||||
bool "Observer"
|
|
||||||
default n
|
|
||||||
config LV_USE_ROLLER
|
config LV_USE_ROLLER
|
||||||
bool "Roller. Requires: lv_label"
|
bool "Roller. Requires: lv_label"
|
||||||
imply LV_USE_LABEL
|
imply LV_USE_LABEL
|
||||||
@@ -1254,10 +1251,6 @@ menu "LVGL configuration"
|
|||||||
bool "Center"
|
bool "Center"
|
||||||
endchoice
|
endchoice
|
||||||
|
|
||||||
config LV_USE_MONKEY
|
|
||||||
bool "Enable Monkey test"
|
|
||||||
default n
|
|
||||||
|
|
||||||
config LV_USE_PROFILER
|
config LV_USE_PROFILER
|
||||||
bool "Runtime performance profiler"
|
bool "Runtime performance profiler"
|
||||||
config LV_USE_PROFILER_BUILTIN
|
config LV_USE_PROFILER_BUILTIN
|
||||||
@@ -1273,6 +1266,10 @@ menu "LVGL configuration"
|
|||||||
depends on LV_USE_PROFILER
|
depends on LV_USE_PROFILER
|
||||||
default "lvgl/src/misc/lv_profiler_builtin.h"
|
default "lvgl/src/misc/lv_profiler_builtin.h"
|
||||||
|
|
||||||
|
config LV_USE_MONKEY
|
||||||
|
bool "Enable Monkey test"
|
||||||
|
default n
|
||||||
|
|
||||||
config LV_USE_GRIDNAV
|
config LV_USE_GRIDNAV
|
||||||
bool "Enable grid navigation"
|
bool "Enable grid navigation"
|
||||||
default n
|
default n
|
||||||
@@ -1282,9 +1279,13 @@ menu "LVGL configuration"
|
|||||||
default n
|
default n
|
||||||
|
|
||||||
config LV_USE_IMGFONT
|
config LV_USE_IMGFONT
|
||||||
bool "draw image in label or span obj"
|
bool "Support using images as font in label or span widgets"
|
||||||
default n
|
default n
|
||||||
|
|
||||||
|
config LV_USE_OBSERVER
|
||||||
|
bool "Observer"
|
||||||
|
default y
|
||||||
|
|
||||||
config LV_USE_IME_PINYIN
|
config LV_USE_IME_PINYIN
|
||||||
bool "Enable Pinyin input method"
|
bool "Enable Pinyin input method"
|
||||||
default n
|
default n
|
||||||
@@ -1384,6 +1385,24 @@ menu "LVGL configuration"
|
|||||||
depends on LV_USE_SDL
|
depends on LV_USE_SDL
|
||||||
default y
|
default y
|
||||||
|
|
||||||
|
choice
|
||||||
|
prompt "SDL mousewheel mode"
|
||||||
|
depends on LV_USE_SDL
|
||||||
|
default LV_SDL_MOUSEWHEEL_MODE_ENCODER
|
||||||
|
|
||||||
|
config LV_SDL_MOUSEWHEEL_MODE_ENCODER
|
||||||
|
bool "The mousewheel emulates an encoder input device"
|
||||||
|
|
||||||
|
config LV_SDL_MOUSEWHEEL_MODE_CROWN
|
||||||
|
bool "The mousewheel emulates a smart watch crown"
|
||||||
|
endchoice
|
||||||
|
|
||||||
|
config LV_SDL_MOUSEWHEEL_MODE
|
||||||
|
int
|
||||||
|
depends on LV_USE_SDL
|
||||||
|
default 0 if LV_SDL_MOUSEWHEEL_MODE_ENCODER
|
||||||
|
default 1 if LV_SDL_MOUSEWHEEL_MODE_CROWN
|
||||||
|
|
||||||
config LV_USE_X11
|
config LV_USE_X11
|
||||||
bool "Use X11 window manager to open window on Linux PC and handle mouse and keyboard"
|
bool "Use X11 window manager to open window on Linux PC and handle mouse and keyboard"
|
||||||
default n
|
default n
|
||||||
|
|||||||
Reference in New Issue
Block a user