From 78d34d08a65036cccf0fe6b8aa9ea5918731daa8 Mon Sep 17 00:00:00 2001 From: Frankie A <40648091+OkiStuff@users.noreply.github.com> Date: Tue, 25 Oct 2022 21:00:45 +0000 Subject: [PATCH 1/4] pkg/lv_drivers: replace LittlevGL to LVGL --- pkg/lv_drivers/doc.txt | 4 ++-- pkg/lv_drivers/include/lv_drv_conf.h | 12 ++++++------ 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/pkg/lv_drivers/doc.txt b/pkg/lv_drivers/doc.txt index d34dece322..388ed31bae 100644 --- a/pkg/lv_drivers/doc.txt +++ b/pkg/lv_drivers/doc.txt @@ -1,8 +1,8 @@ /** -@defgroup pkg_lv_drivers LittlevGL Drivers +@defgroup pkg_lv_drivers LVGL Drivers @ingroup pkg @brief Display controller and touchpad driver to can be directly used with - LittlevGL. + LVGL. @note This package needs the 32bit version of SDL2 diff --git a/pkg/lv_drivers/include/lv_drv_conf.h b/pkg/lv_drivers/include/lv_drv_conf.h index e61d9da198..2d2d24501d 100644 --- a/pkg/lv_drivers/include/lv_drv_conf.h +++ b/pkg/lv_drivers/include/lv_drv_conf.h @@ -8,7 +8,7 @@ /** * @ingroup pkg_lv_drivers - * @brief LittlevGL Drivers SDL2 configuration headers + * @brief LVGL Drivers SDL2 configuration headers * * @note Based on upstream lv_drv_conf_template.h. * @{ @@ -36,28 +36,28 @@ extern "C" { *-------------------*/ /** - * @brief Internal flag to enable LittlevGL SDL2 based drivers for display, mouse, + * @brief Internal flag to enable LVGL SDL2 based drivers for display, mouse, * mousewheel and keyboard */ #define USE_SDL IS_USED(MODULE_LV_DRIVERS_SDL) /** - * @brief LittlevGL SDL2 display horizontal resolution + * @brief LVGL SDL2 display horizontal resolution */ #ifndef SDL_HOR_RES #define SDL_HOR_RES 320 #endif /** - * @brief LittlevGL SDL2 display vertical resolution + * @brief LVGL SDL2 display vertical resolution */ #ifndef SDL_VER_RES #define SDL_VER_RES 240 #endif /** - * @brief LittlevGL display horizontal resolution + * @brief LVGL display horizontal resolution */ #define LV_HOR_RES SDL_HOR_RES /** - * @brief LittlevGL display vertical resolution + * @brief LVGL display vertical resolution */ #define LV_VER_RES SDL_VER_RES /** From 76dfee30ae819f0478f96fae166150c6573f9fdb Mon Sep 17 00:00:00 2001 From: Frankie A <40648091+OkiStuff@users.noreply.github.com> Date: Tue, 25 Oct 2022 21:03:48 +0000 Subject: [PATCH 2/4] pkg/lvgl: replace LittlevGL to LVGL --- pkg/lvgl/Makefile | 2 +- pkg/lvgl/contrib/lvgl.c | 2 +- pkg/lvgl/doc.txt | 6 +++--- pkg/lvgl/include/lv_conf.h | 2 +- pkg/lvgl/include/lvgl_riot.h | 2 +- pkg/lvgl/include/lvgl_riot_conf.h | 2 +- 6 files changed, 8 insertions(+), 8 deletions(-) diff --git a/pkg/lvgl/Makefile b/pkg/lvgl/Makefile index 7b90e435bf..11c19078a0 100644 --- a/pkg/lvgl/Makefile +++ b/pkg/lvgl/Makefile @@ -1,5 +1,5 @@ PKG_NAME=lvgl -PKG_URL=https://github.com/littlevgl/lvgl +PKG_URL=https://github.com/lvgl/lvgl # v8.3.7 PKG_VERSION=2b56e04205481daa6575bd5f7ab5df59d11676eb PKG_LICENSE=MIT diff --git a/pkg/lvgl/contrib/lvgl.c b/pkg/lvgl/contrib/lvgl.c index f7c333e44c..28d16a6f78 100644 --- a/pkg/lvgl/contrib/lvgl.c +++ b/pkg/lvgl/contrib/lvgl.c @@ -11,7 +11,7 @@ * @{ * * @file - * @brief LittlevGL glue code + * @brief LVGL glue code * * @author Alexandre Abadie * @} diff --git a/pkg/lvgl/doc.txt b/pkg/lvgl/doc.txt index fc77c1d5e6..c4046e5624 100644 --- a/pkg/lvgl/doc.txt +++ b/pkg/lvgl/doc.txt @@ -1,9 +1,9 @@ /** -@defgroup pkg_lvgl LittlevGL - Open-Source Embedded GUI Library +@defgroup pkg_lvgl LVGL - Open-Source Embedded GUI Library @ingroup pkg -@brief LittlevGL package for RIOT +@brief LVGL package for RIOT -@see https://github.com/littlevgl/lvgl +@see https://github.com/LVGL/lvgl ## Configuration options diff --git a/pkg/lvgl/include/lv_conf.h b/pkg/lvgl/include/lv_conf.h index 44a55b0087..d81cd882b4 100644 --- a/pkg/lvgl/include/lv_conf.h +++ b/pkg/lvgl/include/lv_conf.h @@ -8,7 +8,7 @@ /** * @ingroup pkg_lvgl - * @brief LittlevGL configuration macros + * @brief LVGL configuration macros * @{ * * @author Alexandre Abadie diff --git a/pkg/lvgl/include/lvgl_riot.h b/pkg/lvgl/include/lvgl_riot.h index 2def082a8c..93e69f8736 100644 --- a/pkg/lvgl/include/lvgl_riot.h +++ b/pkg/lvgl/include/lvgl_riot.h @@ -11,7 +11,7 @@ * @{ * * @file - * @brief Definition for the LittlevGL engine initialization + * @brief Definition for the LVGL engine initialization * * @author Alexandre Abadie */ diff --git a/pkg/lvgl/include/lvgl_riot_conf.h b/pkg/lvgl/include/lvgl_riot_conf.h index 64aa7a6e63..1a7a56c407 100644 --- a/pkg/lvgl/include/lvgl_riot_conf.h +++ b/pkg/lvgl/include/lvgl_riot_conf.h @@ -11,7 +11,7 @@ * @{ * * @file - * @brief Definitions specific to RIOT for the LittlevGL engine + * @brief Definitions specific to RIOT for the LVGL engine * * @author Alexandre Abadie */ From 73d0a5c2d880fb4714922cb08a12514e8674a340 Mon Sep 17 00:00:00 2001 From: Frankie A <40648091+OkiStuff@users.noreply.github.com> Date: Tue, 25 Oct 2022 21:09:49 +0000 Subject: [PATCH 3/4] tests/pkg_lvgl: Replace LittlevGL to LVGL --- tests/pkg/lvgl/README.md | 4 ++-- tests/pkg/lvgl/main.c | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/pkg/lvgl/README.md b/tests/pkg/lvgl/README.md index d14fa00f9c..7dcd21bce1 100644 --- a/tests/pkg/lvgl/README.md +++ b/tests/pkg/lvgl/README.md @@ -1,7 +1,7 @@ -LittlevGL sample application +LVGL sample application ============================ -This application shows a basic usage of LittlevGL with RIOT. It's simply an +This application shows a basic usage of LVGL with RIOT. It's simply an adaption of one of the upstream examples: the [sysmon example](https://github.com/lvgl/lv_apps/tree/master/src/lv_sysmon). diff --git a/tests/pkg/lvgl/main.c b/tests/pkg/lvgl/main.c index 7f7dfd9dbb..d1c8130fdf 100644 --- a/tests/pkg/lvgl/main.c +++ b/tests/pkg/lvgl/main.c @@ -11,7 +11,7 @@ * @{ * * @file - * @brief LittlevGL example application + * @brief LVGL example application * * @author Alexandre Abadie * From e8f897016c0569a9437d7b8a85cdd4d97e380f22 Mon Sep 17 00:00:00 2001 From: Frankie A <40648091+OkiStuff@users.noreply.github.com> Date: Tue, 25 Oct 2022 21:11:09 +0000 Subject: [PATCH 4/4] tests/pkg_lvgl_touch: Replace LittlevGL to LVGL --- tests/pkg/lvgl_touch/README.md | 4 ++-- tests/pkg/lvgl_touch/main.c | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/pkg/lvgl_touch/README.md b/tests/pkg/lvgl_touch/README.md index 2da340b442..691233c9a1 100644 --- a/tests/pkg/lvgl_touch/README.md +++ b/tests/pkg/lvgl_touch/README.md @@ -1,7 +1,7 @@ -LittlevGL sample application +LVGL sample application ============================ -This application shows a usage of LittlevGL with touch capabilities. +This application shows a usage of LVGL with touch capabilities. ### Flashing the application diff --git a/tests/pkg/lvgl_touch/main.c b/tests/pkg/lvgl_touch/main.c index ed532c649d..dd99e407f7 100644 --- a/tests/pkg/lvgl_touch/main.c +++ b/tests/pkg/lvgl_touch/main.c @@ -11,7 +11,7 @@ * @{ * * @file - * @brief LittlevGL example application with clickable button + * @brief LVGL example application with clickable button * * @author Alexandre Abadie *