Lines Matching full:lvgl
2 …LVGL integration for quick evaluation. Simply download the [SDK](https://github.com/RT-Thread-Stud…
4 ## Creating new project with LVGL
5 …wnloading the HMI-Board SDK example project. It comes fully equipped with LVGL and dave-2d support…
8 …s own context, allowing them to be used individually or simultaneously in LVGL’s multithreading mo…
11 LVGL can offload several drawing features to the dave-2d engine, freeing up the CPU for other opera…
13 LVGL can offload several drawing features to the dave-2d engine, freeing up the CPU for other opera…
51 …the `lv_port_disp_init()` function, you can initialize LVGL using [`lv_init()`.](https://docs.lvgl…
75 * To run LVGL, you’ll need to create a thread. You can find examples of how to do this using RT-Thr…
88 /* handle the tasks of LVGL */
100 /* create lvgl thread */
101 err = rt_thread_init(&lvgl_thread, "LVGL", lvgl_thread_entry, RT_NULL,
105 LOG_E("Failed to create LVGL thread");