1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 00:09:46 +01:00

pkg/lv_drivers: replace LittlevGL to LVGL

This commit is contained in:
Frankie A 2022-10-25 21:00:45 +00:00 committed by Alexandre Abadie
parent fcb8283b4c
commit 78d34d08a6
No known key found for this signature in database
GPG Key ID: 1C919A403CAE1405
2 changed files with 8 additions and 8 deletions

View File

@ -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

View File

@ -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
/**