Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[lvgl] release new version #1641

Merged
merged 1 commit into from
Jul 29, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 16 additions & 1 deletion multimedia/LVGL/LVGL/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ if PKG_USING_LVGL

choice
prompt "Version"
default PKG_LVGL_USING_V08035 if RT_VER_NUM >= 0x40101
default PKG_LVGL_USING_V08038 if RT_VER_NUM >= 0x40101
# NXP GUIGuider is designed for LVGL8.2.0 with RT-Thread latest version at this moment
# Thus, it needs to give a privilege to NXP GUIGuider to let it use LVGL8.2.0 even if RT-Thread vesion is higher than 4.1.0
default PKG_LVGL_USING_V08020 if (RT_VER_NUM = 0x40100) || ((RT_VER_NUM > 0x40100) && BSP_USING_NXP_GUIGUIDER)
Expand All @@ -45,6 +45,15 @@ if PKG_USING_LVGL
If RT-Thread vesion is higher than 4.1.0, we recommended to use LVGL v8.3.0 or latest.
If you use some special boards or tools, such as NXP GUIGuider. Maybe needs to choose LVGL v8.2.0.

config PKG_LVGL_USING_V08038
bool "v8.3.8"

config PKG_LVGL_USING_V08037
bool "v8.3.7"

config PKG_LVGL_USING_V08036
bool "v8.3.6"

config PKG_LVGL_USING_V08035
bool "v8.3.5"

Expand Down Expand Up @@ -75,6 +84,9 @@ if PKG_USING_LVGL

config PKG_LVGL_VER_NUM
hex
default 0x08038 if PKG_LVGL_USING_V08038
default 0x08037 if PKG_LVGL_USING_V08037
default 0x08036 if PKG_LVGL_USING_V08036
default 0x08035 if PKG_LVGL_USING_V08035
default 0x08034 if PKG_LVGL_USING_V08034
default 0x08033 if PKG_LVGL_USING_V08033
Expand All @@ -87,6 +99,9 @@ if PKG_USING_LVGL

config PKG_LVGL_VER
string
default "v8.3.8" if PKG_LVGL_VER_NUM = 0x08038
default "v8.3.7" if PKG_LVGL_VER_NUM = 0x08037
default "v8.3.6" if PKG_LVGL_VER_NUM = 0x08036
default "v8.3.5" if PKG_LVGL_VER_NUM = 0x08035
default "v8.3.4" if PKG_LVGL_VER_NUM = 0x08034
default "v8.3.3" if PKG_LVGL_VER_NUM = 0x08033
Expand Down
15 changes: 15 additions & 0 deletions multimedia/LVGL/LVGL/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,21 @@
"icon": "https://lvgl.io/assets/images/logo_lvgl.png",
"doc": "https://github.com/lvgl/lvgl#readme",
"site": [
{
"version": "v8.3.8",
"URL": "https://github.com/lvgl/lvgl/archive/refs/tags/v8.3.8.zip",
"filename": "lvgl-8.3.8.zip"
},
{
"version": "v8.3.7",
"URL": "https://github.com/lvgl/lvgl/archive/refs/tags/v8.3.7.zip",
"filename": "lvgl-8.3.7.zip"
},
{
"version": "v8.3.6",
"URL": "https://github.com/lvgl/lvgl/archive/refs/tags/v8.3.6.zip",
"filename": "lvgl-8.3.6.zip"
},
{
"version": "v8.3.5",
"URL": "https://github.com/lvgl/lvgl/archive/refs/tags/v8.3.5.zip",
Expand Down
3 changes: 2 additions & 1 deletion multimedia/LVGL/LittlevGL2RTT/Kconfig
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# Kconfig file for package LittlevGL2RTT
menuconfig PKG_USING_LITTLEVGL2RTT
bool "LittlevGL2RTT (legacy): The LittlevGL GUI Lib for RT-Thread"
bool "LittlevGL2RTT (LVGL 7.x): The LittlevGL GUI Lib for RT-Thread"
depends on RT_VER_NUM < 0x40100
default n

if PKG_USING_LITTLEVGL2RTT
Expand Down
4 changes: 2 additions & 2 deletions multimedia/LVGL/LittlevGL2RTT/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "LittlevGL2RTT",
"description": "LittlevGL graphics library for RT-Thread (legacy)",
"description_zh": "LittlevGL 是基于 RT-Thread 的图形库软件包 (老版本)",
"description": "LittlevGL graphics library (LVGL 7.x, legacy)",
"description_zh": "LittlevGL 图形库 (LVGL 7.x, 老版本)",
"enable": "PKG_USING_LITTLEVGL2RTT",
"keywords": [
"LittlevGL2RTT",
Expand Down
Loading