Lines Matching full:h
4 Generates lv_conf_internal.h from lv_conf_template.h to provide default values
12 LV_CONF_TEMPLATE = os.path.join(SCRIPT_DIR, "..", "lv_conf_template.h")
13 LV_CONF_INTERNAL = os.path.join(SCRIPT_DIR, "..", "src", "lv_conf_internal.h")
25 * @file lv_conf_internal.h
26 * Make sure all the defines of lv_conf.h have a default value
33 #include <stdint.h>
37 #include "lv_conf_kconfig.h"
43 /*If "lv_conf.h" is available from here try to use it later.*/
45 #if __has_include("lv_conf.h")
52 /*If lv_conf.h is not skipped include it*/
54 … #ifdef LV_CONF_PATH /*If there is a path defined for lv_conf.h use it*/
60 #elif defined(LV_CONF_INCLUDE_SIMPLE) /*Or simply include lv_conf.h is enabled*/
61 #include "lv_conf.h"
63 … #include "../../lv_conf.h" /*Else assume lv_conf.h is next to the lvgl folder*/
68 …#pragma message("Possible failure to include lv_conf.h, please read the comment in this file if yo…
77 * Start parsing lv_conf_template.h
109 #1. Use the value if already set from lv_conf.h or anything else (i.e. do nothing)
127 #1. Use the value if already set from lv_conf.h or anything else (i.e. do nothing)
150 * End of parsing lv_conf_template.h
172 /*If running without lv_conf.h add typedefs with default value*/