graphics/lvgl: Specific LVGL version by kconfig

Signed-off-by: Huang Qi <huangqi3@xiaomi.com>
This commit is contained in:
Huang Qi 2020-08-14 20:31:51 +08:00 committed by Abdelatif Guettouche
parent 7099bc4b02
commit 08c5998472
3 changed files with 6 additions and 2 deletions

View File

@ -39,7 +39,7 @@ include $(APPDIR)/Make.defs
CONFIG_LV_EXAMPLES_URL ?= https://github.com/lvgl/lv_examples/archive
LVGL_EXAMPLES_VERSION ?= 7.0.2
LVGL_EXAMPLES_VERSION = $(patsubst "%",%,$(strip $(CONFIG_LVGL_VERSION)))
LVGL_EXAMPLES_TARBALL = v$(LVGL_EXAMPLES_VERSION).zip
WGET ?= wget

View File

@ -11,6 +11,10 @@ menuconfig GRAPHICS_LVGL
if GRAPHICS_LVGL
config LVGL_VERSION
string "LVGL Version"
default "7.3.0"
config LV_MEM_SIZE
int "Heap size of the graphics library"
default 32768

View File

@ -57,7 +57,7 @@ WD := ${shell echo $(CURDIR) | sed -e 's/ /\\ /g'}
CONFIG_GRAPH_LVGL_URL ?= "https://github.com/lvgl/lvgl/archive"
LVGL_VERSION ?= 7.0.2
LVGL_VERSION = $(patsubst "%",%,$(strip $(CONFIG_LVGL_VERSION)))
LVGL_TARBALL = v$(LVGL_VERSION).zip
WGET ?= wget