Lines Matching refs:driver
10 … buffer is sent to the display using the `flush_cb` function set in the display driver (see below).
49 In the display driver (`lv_disp_drv_t`) enabling the `full_refresh` bit will force LVGL to always r…
55 If the `direct_mode` flag is enabled in the display driver LVGL will draw directly into a **screen …
69 ## Display driver
71 Once the buffer initialization is ready a `lv_disp_drv_t` display driver needs to be:
88 There are some optional display driver data fields:
97 - `user_data` A custom `void` user data for the driver.
108 - `render_start_cb` A callback function that notifies the display driver that rendering has started…
125 disp = lv_disp_drv_register(&disp_drv); /*Register the driver and save the created display objects*/
197 …`sw_rotate` flag set to 1), LVGL will perform the rotation for you. Your driver can and should ass…
209 …rotation, you cannot use neither `direct_mode` nor `full_refresh` in the driver. When using either…
236 …lvgl/lvgl/blob/master/examples/porting/lv_port_disp_template.c) for a template for your own driver.