Lines Matching full:h
12 … It contains a couple of folders but to use `lvgl` you only need `.c` and `.h` files from the `src…
36 There is a configuration header file for LVGL called **lv_conf.h**. You modify this header to set t…
38 To get `lv_conf.h` **copy lvgl/lv_conf_template.h** next to the `lvgl` directory and rename it to *…
41 |-lv_conf.h
45 …play's color depth. Note that, the examples and demos explicitly need to be enabled in `lv_conf.h`.
47 Alternatively, `lv_conf.h` can be copied to another place but then you should add the `LV_CONF_INCL…
48 In this case LVGL will attempt to include `lv_conf.h` simply with `#include "lv_conf.h"`.
50 You can even use a different name for `lv_conf.h`. The custom path can be set via the `LV_CONF_PATH…
51 For example `-DLV_CONF_PATH="/home/joe/my_project/my_custom_conf.h"`
53 …h`. Instead you can pass the config defines using build options. For example `"-DLV_COLOR_DEPTH=32…
55 …h` together with Kconfig, but keep in mind that the value from `lv_conf.h` or build settings (`-D.…