Lines Matching full:lvgl

36 How to run LVGL on Zephyr?
49 After you chose a board you can build one of the LVGL demos for it. Here we are using the :code:`na…
54 $ west build -b native_posix samples/modules/lvgl/demos
69 `README <https://docs.zephyrproject.org/latest/samples/modules/lvgl/demos/README.html>`__.
80 The shell offers enabling/disabling of LVGL monkeys:
85 uart$ lvgl monkey create [pointer|keypad|button|encoder]
88 uart$ lvgl monkey set <index> <inactive/active>
91 Speaking of memory leaks, you can also acquire stats of the memory used by LVGL
95 uart$ lvgl stats memory
102 Zephyr uses the devicetree description language to create and manage LVGL input devices.
106 - `button input <https://docs.zephyrproject.org/latest/build/dts/api/bindings/input/zephyr,lvgl-but…
107 - `pointer input <https://docs.zephyrproject.org/latest/build/dts/api/bindings/input/zephyr,lvgl-po…
108 - `encoder input <https://docs.zephyrproject.org/latest/build/dts/api/bindings/input/zephyr,lvgl-en…
109 - `keypad input <https://docs.zephyrproject.org/latest/build/dts/api/bindings/input/zephyr,lvgl-key…
120 compatible = "zephyr,lvgl-pointer-input";
124 You can access the underlying lvgl :code:`lv_indev_t` for configuration.
151 # Size of the memory region from which lvgl memory is allocated
161 Performance Tuning in LVGL
164 To optimize LVGL's performance, several `kconfig` options can be configured:
177 For Zephyr versions 3.7.0 and below, additional options are available to manage LVGL's frame flushi…
179 - **CONFIG_LV_Z_FLUSH_THREAD**: Enables flushing LVGL frames in a separate thread, allowing the mai…