1
0
mirror of https://github.com/lvgl/lvgl.git synced 2025-01-28 07:03:00 +08:00

add LV_CONF_INCLUDE_SIMPLE to choose between relative or simple include of lv_conf.h

This commit is contained in:
Gabor Kiss-Vamosi 2018-07-07 11:53:22 +02:00
parent c4eaa1359d
commit 90679c2cf5
81 changed files with 250 additions and 64 deletions

View File

@ -13,7 +13,12 @@ extern "C" {
/*********************
* INCLUDES
*********************/
#if LV_CONF_INCLUDE_SIMPLE
#include "lv_conf.h"
#else
#include "../../lv_conf.h"
#endif
#include "lv_obj.h"
/*********************

View File

@ -7,7 +7,6 @@
* INCLUDES
********************/
#include "lv_indev.h"
#include "../../lv_conf.h"
#include "../lv_hal/lv_hal_tick.h"
#include "../lv_core/lv_group.h"

View File

@ -13,7 +13,12 @@ extern "C" {
/*********************
* INCLUDES
*********************/
#if LV_CONF_INCLUDE_SIMPLE
#include "lv_conf.h"
#else
#include "../../lv_conf.h"
#endif
#include <stddef.h>
#include <stdbool.h>
#include "lv_style.h"

View File

@ -6,7 +6,6 @@
/*********************
* INCLUDES
*********************/
#include "../../lv_conf.h"
#include <stddef.h>
#include "lv_refr.h"
#include "lv_vdb.h"

View File

@ -16,7 +16,6 @@ extern "C" {
#include "lv_obj.h"
#include <stdbool.h>
/*********************
* DEFINES
*********************/

View File

@ -6,8 +6,6 @@
/*********************
* INCLUDES
*********************/
#include "../../lv_conf.h"
#include "lv_style.h"
#include "lv_obj.h"
#include "../lv_misc/lv_mem.h"

View File

@ -2,12 +2,12 @@
* @file lv_vdb.c
*
*/
#include "../../lv_conf.h"
#include "lv_vdb.h"
#if LV_VDB_SIZE != 0
#include "../lv_hal/lv_hal_disp.h"
#include <stddef.h>
#include "lv_vdb.h"
/*********************
* INCLUDES

View File

@ -13,7 +13,11 @@ extern "C" {
/*********************
* INCLUDES
*********************/
#if LV_CONF_INCLUDE_SIMPLE
#include "lv_conf.h"
#else
#include "../../lv_conf.h"
#endif
#if LV_VDB_SIZE != 0

View File

@ -6,7 +6,6 @@
/*********************
* INCLUDES
*********************/
#include "../../lv_conf.h"
#include <stdio.h>
#include <stdbool.h>

View File

@ -13,6 +13,12 @@ extern "C" {
/*********************
* INCLUDES
*********************/
#if LV_CONF_INCLUDE_SIMPLE
#include "lv_conf.h"
#else
#include "../../lv_conf.h"
#endif
#include "../lv_core/lv_style.h"
#include "../lv_misc/lv_txt.h"

View File

@ -13,7 +13,12 @@ extern "C" {
/*********************
* INCLUDES
*********************/
#if LV_CONF_INCLUDE_SIMPLE
#include "lv_conf.h"
#else
#include "../../lv_conf.h"
#endif
#if USE_LV_REAL_DRAW != 0
#include "../lv_misc/lv_color.h"

View File

@ -3,7 +3,7 @@
*
*/
#include "../../lv_conf.h"
#include "lv_draw_vbasic.h"
#include <stdbool.h>
#include <stdint.h>

View File

@ -13,7 +13,11 @@ extern "C" {
/*********************
* INCLUDES
*********************/
#if LV_CONF_INCLUDE_SIMPLE
#include "lv_conf.h"
#else
#include "../../lv_conf.h"
#endif
#if LV_VDB_SIZE != 0

View File

@ -6,9 +6,14 @@
/*********************
* INCLUDES
*********************/
#if LV_CONF_INCLUDE_SIMPLE
#include "lv_conf.h"
#else
#include "../../lv_conf.h"
#endif
#include "lv_hal_tick.h"
#include <stddef.h>
#include "../../lv_conf.h"
/*********************
* DEFINES

View File

@ -14,7 +14,12 @@ extern "C" {
/*********************
* INCLUDES
*********************/
#if LV_CONF_INCLUDE_SIMPLE
#include "lv_conf.h"
#else
#include "../../lv_conf.h"
#endif
#if USE_LV_ANIMATION
#include <stdint.h>

View File

@ -13,7 +13,11 @@ extern "C" {
/*********************
* INCLUDES
*********************/
#if LV_CONF_INCLUDE_SIMPLE
#include "lv_conf.h"
#else
#include "../../lv_conf.h"
#endif
#include <stdint.h>

View File

@ -6,8 +6,6 @@
/*********************
* INCLUDES
*********************/
#include "../../lv_conf.h"
#include <stddef.h>
#include "lv_font.h"

View File

@ -14,7 +14,11 @@ extern "C" {
/*********************
* INCLUDES
*********************/
#if LV_CONF_INCLUDE_SIMPLE
#include "lv_conf.h"
#else
#include "../../lv_conf.h"
#endif
#include <stdint.h>
#include <stddef.h>

View File

@ -7,7 +7,6 @@
/*********************
* INCLUDES
*********************/
#include "../../lv_conf.h"
#include "lv_mem.h"
#include "lv_math.h"
#include <string.h>

View File

@ -14,6 +14,12 @@ extern "C" {
/*********************
* INCLUDES
*********************/
#if LV_CONF_INCLUDE_SIMPLE
#include "lv_conf.h"
#else
#include "../../lv_conf.h"
#endif
#include <stdint.h>
#include <stddef.h>

View File

@ -10,7 +10,6 @@
#include <stddef.h>
#include "lv_task.h"
#include "../lv_hal/lv_hal_tick.h"
#include "../../lv_conf.h"
/*********************
* DEFINES

View File

@ -14,6 +14,12 @@ extern "C" {
/*********************
* INCLUDES
*********************/
#if LV_CONF_INCLUDE_SIMPLE
#include "lv_conf.h"
#else
#include "../../lv_conf.h"
#endif
#include <stdint.h>
#include <stdbool.h>
#include "lv_mem.h"

View File

@ -7,7 +7,6 @@
* INCLUDES
*********************/
#include "lv_txt.h"
#include "../../lv_conf.h"
#include "lv_math.h"
/*********************

View File

@ -13,6 +13,12 @@ extern "C" {
/*********************
* INCLUDES
*********************/
#if LV_CONF_INCLUDE_SIMPLE
#include "lv_conf.h"
#else
#include "../../lv_conf.h"
#endif
#include <stdbool.h>
#include "lv_area.h"
#include "lv_font.h"

View File

@ -15,7 +15,11 @@ extern "C" {
/*********************
* INCLUDES
*********************/
#if LV_CONF_INCLUDE_SIMPLE
#include "lv_conf.h"
#else
#include "../../lv_conf.h"
#endif
#if USE_LV_FILESYSTEM

View File

@ -8,10 +8,9 @@
/*********************
* INCLUDES
*********************/
#include "../../lv_conf.h"
#include "lv_bar.h"
#if USE_LV_BAR != 0
#include "lv_bar.h"
#include "../lv_draw/lv_draw.h"
#include "../lv_themes/lv_theme.h"
#include "../lv_misc/lv_anim.h"

View File

@ -13,7 +13,12 @@ extern "C" {
/*********************
* INCLUDES
*********************/
#if LV_CONF_INCLUDE_SIMPLE
#include "lv_conf.h"
#else
#include "../../lv_conf.h"
#endif
#if USE_LV_BAR != 0
#include "../lv_core/lv_obj.h"

View File

@ -7,11 +7,10 @@
* INCLUDES
*********************/
#include "../../lv_conf.h"
#include "lv_btn.h"
#if USE_LV_BTN != 0
#include <string.h>
#include "lv_btn.h"
#include "../lv_core/lv_group.h"
#include "../lv_draw/lv_draw.h"
#include "../lv_themes/lv_theme.h"

View File

@ -13,7 +13,12 @@ extern "C" {
/*********************
* INCLUDES
*********************/
#if LV_CONF_INCLUDE_SIMPLE
#include "lv_conf.h"
#else
#include "../../lv_conf.h"
#endif
#if USE_LV_BTN != 0
/*Testing of dependencies*/

View File

@ -6,10 +6,9 @@
/*********************
* INCLUDES
*********************/
#include "../../lv_conf.h"
#include "lv_btnm.h"
#if USE_LV_BTNM != 0
#include "lv_btnm.h"
#include "../lv_core/lv_group.h"
#include "../lv_draw/lv_draw.h"
#include "../lv_core/lv_refr.h"

View File

@ -14,7 +14,12 @@ extern "C" {
/*********************
* INCLUDES
*********************/
#if LV_CONF_INCLUDE_SIMPLE
#include "lv_conf.h"
#else
#include "../../lv_conf.h"
#endif
#if USE_LV_BTNM != 0
#include "../lv_core/lv_obj.h"

View File

@ -6,10 +6,9 @@
/*********************
* INCLUDES
*********************/
#include "../../lv_conf.h"
#include "lv_cb.h"
#if USE_LV_CB != 0
#include "lv_cb.h"
#include "../lv_core/lv_group.h"
#include "../lv_themes/lv_theme.h"

View File

@ -13,7 +13,12 @@ extern "C" {
/*********************
* INCLUDES
*********************/
#if LV_CONF_INCLUDE_SIMPLE
#include "lv_conf.h"
#else
#include "../../lv_conf.h"
#endif
#if USE_LV_CB != 0
/*Testing of dependencies*/

View File

@ -6,10 +6,9 @@
/*********************
* INCLUDES
*********************/
#include "../../lv_conf.h"
#include "lv_chart.h"
#if USE_LV_CHART != 0
#include "lv_chart.h"
#include "../lv_draw/lv_draw.h"
#include "../lv_themes/lv_theme.h"

View File

@ -13,7 +13,12 @@ extern "C" {
/*********************
* INCLUDES
*********************/
#if LV_CONF_INCLUDE_SIMPLE
#include "lv_conf.h"
#else
#include "../../lv_conf.h"
#endif
#if USE_LV_CHART != 0
#include "../lv_core/lv_obj.h"

View File

@ -6,15 +6,14 @@
/*********************
* INCLUDES
*********************/
#include "../../lv_conf.h"
#include "lv_cont.h"
#if USE_LV_CONT != 0
#include <stdbool.h>
#include <stdint.h>
#include <string.h>
#include "lv_cont.h"
#include "../lv_draw/lv_draw.h"
#include "../lv_draw/lv_draw_vbasic.h"
#include "../lv_themes/lv_theme.h"

View File

@ -13,7 +13,12 @@ extern "C" {
/*********************
* INCLUDES
*********************/
#if LV_CONF_INCLUDE_SIMPLE
#include "lv_conf.h"
#else
#include "../../lv_conf.h"
#endif
#if USE_LV_CONT != 0
#include "../lv_core/lv_obj.h"

View File

@ -7,10 +7,9 @@
/*********************
* INCLUDES
*********************/
#include "../../lv_conf.h"
#include "lv_ddlist.h"
#if USE_LV_DDLIST != 0
#include "lv_ddlist.h"
#include "../lv_draw/lv_draw.h"
#include "../lv_core/lv_group.h"
#include "../lv_core/lv_indev.h"

View File

@ -13,7 +13,12 @@ extern "C" {
/*********************
* INCLUDES
*********************/
#if LV_CONF_INCLUDE_SIMPLE
#include "lv_conf.h"
#else
#include "../../lv_conf.h"
#endif
#if USE_LV_DDLIST != 0
/*Testing of dependencies*/

View File

@ -7,10 +7,9 @@
/*********************
* INCLUDES
*********************/
#include "../../lv_conf.h"
#include "lv_gauge.h"
#if USE_LV_GAUGE != 0
#include "lv_gauge.h"
#include "../lv_draw/lv_draw.h"
#include "../lv_themes/lv_theme.h"
#include "../lv_misc/lv_txt.h"

View File

@ -13,7 +13,12 @@ extern "C" {
/*********************
* INCLUDES
*********************/
#if LV_CONF_INCLUDE_SIMPLE
#include "lv_conf.h"
#else
#include "../../lv_conf.h"
#endif
#if USE_LV_GAUGE != 0
/*Testing of dependencies*/

View File

@ -6,7 +6,7 @@
/*********************
* INCLUDES
*********************/
#include "../../lv_conf.h"
#include "lv_img.h"
#if USE_LV_IMG != 0
/*Testing of dependencies*/
@ -14,7 +14,6 @@
#error "lv_img: lv_label is required. Enable it in lv_conf.h (USE_LV_LABEL 1) "
#endif
#include "lv_img.h"
#include "../lv_themes/lv_theme.h"
#include "../lv_misc/lv_fs.h"
#include "../lv_misc/lv_ufs.h"

View File

@ -13,7 +13,12 @@ extern "C" {
/*********************
* INCLUDES
*********************/
#if LV_CONF_INCLUDE_SIMPLE
#include "lv_conf.h"
#else
#include "../../lv_conf.h"
#endif
#if USE_LV_IMG != 0
#include "../lv_core/lv_obj.h"

View File

@ -7,10 +7,9 @@
/*********************
* INCLUDES
*********************/
#include "../../lv_conf.h"
#include "lv_kb.h"
#if USE_LV_KB != 0
#include "lv_kb.h"
#include "lv_ta.h"
#include "../lv_themes/lv_theme.h"

View File

@ -13,7 +13,12 @@ extern "C" {
/*********************
* INCLUDES
*********************/
#if LV_CONF_INCLUDE_SIMPLE
#include "lv_conf.h"
#else
#include "../../lv_conf.h"
#endif
#if USE_LV_KB != 0
/*Testing of dependencies*/

View File

@ -6,10 +6,9 @@
/*********************
* INCLUDES
*********************/
#include "../../lv_conf.h"
#include "lv_label.h"
#if USE_LV_LABEL != 0
#include "lv_label.h"
#include "../lv_core/lv_obj.h"
#include "../lv_core/lv_group.h"
#include "../lv_draw/lv_draw.h"

View File

@ -13,7 +13,12 @@ extern "C" {
/*********************
* INCLUDES
*********************/
#if LV_CONF_INCLUDE_SIMPLE
#include "lv_conf.h"
#else
#include "../../lv_conf.h"
#endif
#if USE_LV_LABEL != 0
#include "../lv_core/lv_obj.h"

View File

@ -6,10 +6,9 @@
/*********************
* INCLUDES
*********************/
#include "../../lv_conf.h"
#include "lv_led.h"
#if USE_LV_LED != 0
#include "lv_led.h"
#include "../lv_themes/lv_theme.h"
#include "../lv_draw/lv_draw.h"

View File

@ -13,7 +13,12 @@ extern "C" {
/*********************
* INCLUDES
*********************/
#if LV_CONF_INCLUDE_SIMPLE
#include "lv_conf.h"
#else
#include "../../lv_conf.h"
#endif
#if USE_LV_LED != 0
#include "../lv_core/lv_obj.h"

View File

@ -6,10 +6,9 @@
/*********************
* INCLUDES
*********************/
#include "../../lv_conf.h"
#include "lv_line.h"
#if USE_LV_LINE != 0
#include "lv_line.h"
#include "../lv_draw/lv_draw.h"
#include "../lv_misc/lv_math.h"
#include <stdbool.h>

View File

@ -13,7 +13,12 @@ extern "C" {
/*********************
* INCLUDES
*********************/
#if LV_CONF_INCLUDE_SIMPLE
#include "lv_conf.h"
#else
#include "../../lv_conf.h"
#endif
#if USE_LV_LINE != 0
#include "../lv_core/lv_obj.h"

View File

@ -6,10 +6,9 @@
/*********************
* INCLUDES
*********************/
#include "../../lv_conf.h"
#include "lv_list.h"
#if USE_LV_LIST != 0
#include "lv_list.h"
#include "../lv_core/lv_group.h"
#include "../lv_themes/lv_theme.h"
#include "../lv_misc/lv_anim.h"

View File

@ -13,7 +13,12 @@ extern "C" {
/*********************
* INCLUDES
*********************/
#if LV_CONF_INCLUDE_SIMPLE
#include "lv_conf.h"
#else
#include "../../lv_conf.h"
#endif
#if USE_LV_LIST != 0
/*Testing of dependencies*/

View File

@ -6,10 +6,9 @@
/*********************
* INCLUDES
*********************/
#include "../../lv_conf.h"
#include "lv_lmeter.h"
#if USE_LV_LMETER != 0
#include "lv_lmeter.h"
#include "../lv_draw/lv_draw.h"
#include "../lv_themes/lv_theme.h"
#include "../lv_core/lv_group.h"

View File

@ -13,7 +13,12 @@ extern "C" {
/*********************
* INCLUDES
*********************/
#if LV_CONF_INCLUDE_SIMPLE
#include "lv_conf.h"
#else
#include "../../lv_conf.h"
#endif
#if USE_LV_LMETER != 0
#include "../lv_core/lv_obj.h"

View File

@ -7,10 +7,9 @@
/*********************
* INCLUDES
*********************/
#include "../../lv_conf.h"
#include "lv_mbox.h"
#if USE_LV_MBOX != 0
#include "lv_mbox.h"
#include "../lv_core/lv_group.h"
#include "../lv_themes/lv_theme.h"
#include "../lv_misc/lv_anim.h"

View File

@ -13,7 +13,12 @@ extern "C" {
/*********************
* INCLUDES
*********************/
#if LV_CONF_INCLUDE_SIMPLE
#include "lv_conf.h"
#else
#include "../../lv_conf.h"
#endif
#if USE_LV_MBOX != 0
/*Testing of dependencies*/

View File

@ -13,10 +13,9 @@
/*********************
* INCLUDES
*********************/
#include "../../lv_conf.h"
//#include "lv_templ.h" /*TODO uncomment this*/
#if USE_LV_TEMPL != 0
#include "lv_templ.h"
/*********************
* DEFINES

View File

@ -21,7 +21,12 @@ extern "C" {
/*********************
* INCLUDES
*********************/
#if LV_CONF_INCLUDE_SIMPLE
#include "lv_conf.h"
#else
#include "../../lv_conf.h"
#endif
#if USE_LV_TEMPL != 0
#include "../lv_core/lv_obj.h"

View File

@ -6,11 +6,10 @@
/*********************
* INCLUDES
*********************/
#include "../../lv_conf.h"
#include "../lv_objx/lv_page.h"
#if USE_LV_PAGE != 0
#include "../lv_core/lv_group.h"
#include "../lv_objx/lv_page.h"
#include "../lv_draw/lv_draw.h"
#include "../lv_themes/lv_theme.h"
#include "../lv_core/lv_refr.h"

View File

@ -13,7 +13,12 @@ extern "C" {
/*********************
* INCLUDES
*********************/
#if LV_CONF_INCLUDE_SIMPLE
#include "lv_conf.h"
#else
#include "../../lv_conf.h"
#endif
#if USE_LV_PAGE != 0
/*Testing of dependencies*/

View File

@ -6,10 +6,9 @@
/*********************
* INCLUDES
*********************/
#include "../../lv_conf.h"
#include "lv_roller.h"
#if USE_LV_ROLLER != 0
#include "lv_roller.h"
#include "../lv_draw/lv_draw.h"
#include "../lv_core/lv_group.h"
#include "../lv_themes/lv_theme.h"

View File

@ -13,7 +13,12 @@ extern "C" {
/*********************
* INCLUDES
*********************/
#if LV_CONF_INCLUDE_SIMPLE
#include "lv_conf.h"
#else
#include "../../lv_conf.h"
#endif
#if USE_LV_ROLLER != 0
/*Testing of dependencies*/

View File

@ -7,10 +7,9 @@
/*********************
* INCLUDES
*********************/
#include "../../lv_conf.h"
#include "lv_slider.h"
#if USE_LV_SLIDER != 0
#include "lv_slider.h"
#include "../lv_core/lv_group.h"
#include "../lv_draw/lv_draw.h"
#include "../lv_themes/lv_theme.h"

View File

@ -13,7 +13,12 @@ extern "C" {
/*********************
* INCLUDES
*********************/
#if LV_CONF_INCLUDE_SIMPLE
#include "lv_conf.h"
#else
#include "../../lv_conf.h"
#endif
#if USE_LV_SLIDER != 0
/*Testing of dependencies*/

View File

@ -6,7 +6,7 @@
/*********************
* INCLUDES
*********************/
#include "../../lv_conf.h"
#include "lv_sw.h"
#if USE_LV_SW != 0
/*Testing of dependencies*/
@ -14,7 +14,6 @@
#error "lv_sw: lv_slider is required. Enable it in lv_conf.h (USE_LV_SLIDER 1) "
#endif
#include "lv_sw.h"
#include "../lv_themes/lv_theme.h"
/*********************

View File

@ -13,7 +13,12 @@ extern "C" {
/*********************
* INCLUDES
*********************/
#if LV_CONF_INCLUDE_SIMPLE
#include "lv_conf.h"
#else
#include "../../lv_conf.h"
#endif
#if USE_LV_SW != 0
/*Testing of dependencies*/

View File

@ -7,10 +7,9 @@
/*********************
* INCLUDES
*********************/
#include "../../lv_conf.h"
#include "lv_ta.h"
#if USE_LV_TA != 0
#include "lv_ta.h"
#include "../lv_core/lv_group.h"
#include "../lv_draw/lv_draw.h"
#include "../lv_themes/lv_theme.h"

View File

@ -13,7 +13,12 @@ extern "C" {
/*********************
* INCLUDES
*********************/
#if LV_CONF_INCLUDE_SIMPLE
#include "lv_conf.h"
#else
#include "../../lv_conf.h"
#endif
#if USE_LV_TA != 0
/*Testing of dependencies*/

View File

@ -6,10 +6,9 @@
/*********************
* INCLUDES
*********************/
#include "../../lv_conf.h"
#include "lv_tabview.h"
#if USE_LV_TABVIEW != 0
#include "lv_tabview.h"
#include "lv_btnm.h"
#include "../lv_themes/lv_theme.h"
#include "../lv_misc/lv_anim.h"

View File

@ -13,9 +13,13 @@ extern "C" {
/*********************
* INCLUDES
*********************/
#if LV_CONF_INCLUDE_SIMPLE
#include "lv_conf.h"
#else
#include "../../lv_conf.h"
#if USE_LV_TABVIEW != 0
#endif
#if USE_LV_TABVIEW != 0
/*Testing of dependencies*/
#if USE_LV_BTNM == 0

View File

@ -6,10 +6,9 @@
/*********************
* INCLUDES
*********************/
#include "../../lv_conf.h"
#include "lv_win.h"
#if USE_LV_WIN != 0
#include "lv_win.h"
#include "../lv_themes/lv_theme.h"
/*********************

View File

@ -13,7 +13,12 @@ extern "C" {
/*********************
* INCLUDES
*********************/
#if LV_CONF_INCLUDE_SIMPLE
#include "lv_conf.h"
#else
#include "../../lv_conf.h"
#endif
#if USE_LV_WIN != 0
/*Testing of dependencies*/

View File

@ -13,7 +13,12 @@ extern "C" {
/*********************
* INCLUDES
*********************/
#if LV_CONF_INCLUDE_SIMPLE
#include "lv_conf.h"
#else
#include "../../lv_conf.h"
#endif
#include "../lv_core/lv_style.h"
/*********************

View File

@ -13,7 +13,11 @@ extern "C" {
/*********************
* INCLUDES
*********************/
#if LV_CONF_INCLUDE_SIMPLE
#include "lv_conf.h"
#else
#include "../../lv_conf.h"
#endif
#if USE_LV_THEME_ALIEN

View File

@ -13,7 +13,11 @@ extern "C" {
/*********************
* INCLUDES
*********************/
#if LV_CONF_INCLUDE_SIMPLE
#include "lv_conf.h"
#else
#include "../../lv_conf.h"
#endif
#if USE_LV_THEME_DEFAULT

View File

@ -13,7 +13,11 @@ extern "C" {
/*********************
* INCLUDES
*********************/
#if LV_CONF_INCLUDE_SIMPLE
#include "lv_conf.h"
#else
#include "../../lv_conf.h"
#endif
#if USE_LV_THEME_MATERIAL

View File

@ -13,7 +13,11 @@ extern "C" {
/*********************
* INCLUDES
*********************/
#if LV_CONF_INCLUDE_SIMPLE
#include "lv_conf.h"
#else
#include "../../lv_conf.h"
#endif
#if USE_LV_THEME_MONO

View File

@ -13,7 +13,11 @@ extern "C" {
/*********************
* INCLUDES
*********************/
#if LV_CONF_INCLUDE_SIMPLE
#include "lv_conf.h"
#else
#include "../../lv_conf.h"
#endif
#if USE_LV_THEME_NIGHT

View File

@ -13,7 +13,11 @@ extern "C" {
/*********************
* INCLUDES
*********************/
#if LV_CONF_INCLUDE_SIMPLE
#include "lv_conf.h"
#else
#include "../../lv_conf.h"
#endif
#if USE_LV_THEME_TEMPL

View File

@ -13,7 +13,11 @@ extern "C" {
/*********************
* INCLUDES
*********************/
#if LV_CONF_INCLUDE_SIMPLE
#include "lv_conf.h"
#else
#include "../../lv_conf.h"
#endif
#if USE_LV_THEME_ZEN