diff --git a/lv_conf_template.h b/lv_conf_template.h index f77a949600..8e1b73eb42 100644 --- a/lv_conf_template.h +++ b/lv_conf_template.h @@ -17,6 +17,11 @@ #ifndef LV_CONF_H #define LV_CONF_H +/*If you need to include anything here, do it inside the `__ASSEMBLY__` guard */ +#if 0 && defined(__ASSEMBLY__) +#include "my_include.h" +#endif + /*==================== COLOR SETTINGS *====================*/ diff --git a/src/lv_conf_internal.h b/src/lv_conf_internal.h index 4eecd47469..2bd8404ab3 100644 --- a/src/lv_conf_internal.h +++ b/src/lv_conf_internal.h @@ -73,6 +73,11 @@ * Start parsing lv_conf_template.h -----------------------------------*/ +/*If you need to include anything here, do it inside the `__ASSEMBLY__` guard */ +#if 0 && defined(__ASSEMBLY__) +#include "my_include.h" +#endif + /*==================== COLOR SETTINGS *====================*/