Lines Matching full:lvgl
4 Step-by-step Guide: How to use the LVGL v9 LCD drivers with STM32 devices
10 …gure the STM32Cube HAL with the new TFT-LCD display drivers introduced in LVGL v9.0. The example c…
13 …Software Extension Package. While these drivers can be used with LVGL as well, the LVGL LCD driver…
15 …The LVGL LCD drivers are meant as an alternative, simple to use API to implement LCD support for y…
17 …LVGL LCD drivers do not implement the communication part, whether SPI, parallel i8080 bus or other…
19 …LVGL-based project. If you are in a hurry and not interested in the details, you can find the fina…
27 …Although the example uses FreeRTOS, this is not a strict requirement with the LVGL LCD display dri…
29 … of this guide in the `lv_port_lcd_stm32_template.c <https://github.com/lvgl/lvgl/examples/porting…
81 …project tree clone the LVGL repository into the Middlewares/Third_Party folder (this tutorial uses…
85 git clone https://github.com/lvgl/lvgl.git -b release/v9.0
87 #. Cloning should create an 'lvgl' subfolder inside the 'Third_Party' folder. From the 'lvgl' folde…
95 #. Right click the folder 'Middlewares/Third_Party/lvgl/tests', select Resource Configurations/Excl…
100 ../Middlewares/Third_Party/lvgl
133 #include "lvgl.h"
224 …* In case of a DMA transfer a callback must be installed to notify LVGL about the end of the trans…
257 /* Initialize LVGL */
264 /* Create the LVGL display object and the LCD display driver */
293 … /* raise the task priority of LVGL and/or reduce the handler period can improve the performance */