mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
Merge #18788
18788: pkg/lvgl: Change all references of LittlevGL to LVGL in doc.txt r=aabadie a=OkiStuff Change all references of LittlevGL to LVGL in pkg/lvgl/doc.txt per request of LVGL team (https://github.com/lvgl/lvgl/pull/3761) ### Contribution description Changing parts of the pkg/lvgl/doc.txt to replace "LittlevGL" to LVGL as per request of the LVGL team ### Issues/PRs references https://github.com/lvgl/lvgl/pull/3761 Co-authored-by: Frankie A <40648091+OkiStuff@users.noreply.github.com>
This commit is contained in:
commit
b93328d14b
@ -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
|
||||
|
||||
|
@ -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
|
||||
/**
|
||||
|
@ -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
|
||||
|
@ -11,7 +11,7 @@
|
||||
* @{
|
||||
*
|
||||
* @file
|
||||
* @brief LittlevGL glue code
|
||||
* @brief LVGL glue code
|
||||
*
|
||||
* @author Alexandre Abadie <alexandre.abadie@inria.fr>
|
||||
* @}
|
||||
|
@ -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
|
||||
|
||||
|
@ -8,7 +8,7 @@
|
||||
|
||||
/**
|
||||
* @ingroup pkg_lvgl
|
||||
* @brief LittlevGL configuration macros
|
||||
* @brief LVGL configuration macros
|
||||
* @{
|
||||
*
|
||||
* @author Alexandre Abadie <alexandre.abadie@inria.fr>
|
||||
|
@ -11,7 +11,7 @@
|
||||
* @{
|
||||
*
|
||||
* @file
|
||||
* @brief Definition for the LittlevGL engine initialization
|
||||
* @brief Definition for the LVGL engine initialization
|
||||
*
|
||||
* @author Alexandre Abadie <alexandre.abadie@inria.fr>
|
||||
*/
|
||||
|
@ -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 <alexandre.abadie@inria.fr>
|
||||
*/
|
||||
|
@ -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).
|
||||
|
||||
|
@ -11,7 +11,7 @@
|
||||
* @{
|
||||
*
|
||||
* @file
|
||||
* @brief LittlevGL example application
|
||||
* @brief LVGL example application
|
||||
*
|
||||
* @author Alexandre Abadie <alexandre.abadie@inria.fr>
|
||||
*
|
||||
|
@ -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
|
||||
|
||||
|
@ -11,7 +11,7 @@
|
||||
* @{
|
||||
*
|
||||
* @file
|
||||
* @brief LittlevGL example application with clickable button
|
||||
* @brief LVGL example application with clickable button
|
||||
*
|
||||
* @author Alexandre Abadie <alexandre.abadie@inria.fr>
|
||||
*
|
||||
|
Loading…
Reference in New Issue
Block a user