Lines Matching refs:to
18 When setting up your project for the first time, copy ``lvgl/lv_conf_template.h`` to
19 ``lv_conf.h`` next to the ``lvgl`` folder. Change the first ``#if 0`` to ``1`` to
20 enable the file's content and set the :c:macro:`LV_COLOR_DEPTH` define to align with
30 Alternatively, ``lv_conf.h`` can be copied to another place but then you
31 should add the :c:macro:`LV_CONF_INCLUDE_SIMPLE` define to your compiler
34 will attempt to include ``lv_conf.h`` simply with ``#include "lv_conf.h"``.
39 is set :c:macro:`LV_CONF_SKIP` is assumed to be ``0``. Please notice,
40 when defining the :c:macro:`LV_CONF_PATH`, you need to make sure it is
43 If :c:macro:`LV_CONF_SKIP` is defined, LVGL will not try to include
61 Once the ``lv_conf.h`` file is in place, you can modify this header to configure
65 to at least set :c:macro:`LV_COLOR_DEPTH` according to your display's color
66 depth. Note that the examples and demos explicitly need to be enabled
69 TODO: Add all things related to ``lv_conf.h`` file and its contents.
74 It is possible to run multiple, independent instances of LVGL. To enable its
76 and provide a custom function to :cpp:func:`lv_global_default` using ``__thread`` or
94 TODO: Add how to use LVGL with Kconfig.