add tests and lv_conf_internal.h to use LV_CONF_PATH

This commit is contained in:
Gabor Kiss-Vamosi
2019-12-26 02:49:30 +01:00
parent abb4eb147d
commit 68984828c3
78 changed files with 538 additions and 373 deletions
+7 -7
View File
@@ -1,8 +1,8 @@
include $(LVGL_DIR)/lvgl/src/lv_core/lv_core.mk include $(LVGL_DIR)/src/lv_core/lv_core.mk
include $(LVGL_DIR)/lvgl/src/lv_hal/lv_hal.mk include $(LVGL_DIR)/src/lv_hal/lv_hal.mk
include $(LVGL_DIR)/lvgl/src/lv_objx/lv_objx.mk include $(LVGL_DIR)/src/lv_objx/lv_objx.mk
include $(LVGL_DIR)/lvgl/src/lv_font/lv_font.mk include $(LVGL_DIR)/src/lv_font/lv_font.mk
include $(LVGL_DIR)/lvgl/src/lv_misc/lv_misc.mk include $(LVGL_DIR)/src/lv_misc/lv_misc.mk
include $(LVGL_DIR)/lvgl/src/lv_themes/lv_themes.mk include $(LVGL_DIR)/src/lv_themes/lv_themes.mk
include $(LVGL_DIR)/lvgl/src/lv_draw/lv_draw.mk include $(LVGL_DIR)/src/lv_draw/lv_draw.mk
@@ -1,15 +1,25 @@
/** /**
* GENERATED FILE, DO NOT EDIT IT! * GENERATED FILE, DO NOT EDIT IT!
* @file lv_conf_checker.h * @file lv_conf_internal.h
* Make sure all the defines of lv_conf.h have a default value * Make sure all the defines of lv_conf.h have a default value
**/ **/
#ifndef LV_CONF_CHECKER_H #ifndef LV_CONF_INTERNAL_H
#define LV_CONF_CHECKER_H #define LV_CONF_INTERNAL_H
/* clang-format off */ /* clang-format off */
#include <stdint.h> #include <stdint.h>
#ifdef LV_CONF_PATH
#define __LV_TO_STR_AUX(x) #x
#define __LV_TO_STR(x) __LV_TO_STR_AUX(x)
#include __LV_TO_STR(LV_CONF_PATH)
#undef __LV_TO_STR_AUX
#undef __LV_TO_STR
#else
#include "../../lv_conf.h"
#endif
/*==================== /*====================
Graphical settings Graphical settings
*====================*/ *====================*/
@@ -218,16 +228,6 @@
* Image decoder and cache * Image decoder and cache
*========================*/ *========================*/
/* 1: Enable indexed (palette) images */
#ifndef LV_IMG_CF_INDEXED
#define LV_IMG_CF_INDEXED 1
#endif
/* 1: Enable alpha indexed images */
#ifndef LV_IMG_CF_ALPHA
#define LV_IMG_CF_ALPHA 1
#endif
/* Default image cache size. Image caching keeps the images opened. /* Default image cache size. Image caching keeps the images opened.
* If only the built-in image formats are used there is no real advantage of caching. * If only the built-in image formats are used there is no real advantage of caching.
* (I.e. no new image decoder is added) * (I.e. no new image decoder is added)
+3 -3
View File
@@ -6,7 +6,7 @@ CSRCS += lv_refr.c
CSRCS += lv_style.c CSRCS += lv_style.c
CSRCS += lv_debug.c CSRCS += lv_debug.c
DEPPATH += --dep-path $(LVGL_DIR)/lvgl/src/lv_core DEPPATH += --dep-path $(LVGL_DIR)/src/lv_core
VPATH += :$(LVGL_DIR)/lvgl/src/lv_core VPATH += :$(LVGL_DIR)/src/lv_core
CFLAGS += "-I$(LVGL_DIR)/lvgl/src/lv_core" CFLAGS += "-I$(LVGL_DIR)/src/lv_core"
-5
View File
@@ -13,11 +13,6 @@ extern "C" {
/********************* /*********************
* INCLUDES * INCLUDES
*********************/ *********************/
#ifdef LV_CONF_INCLUDE_SIMPLE
#include "lv_conf.h"
#else
#include "../../../lv_conf.h"
#endif
#include "lv_obj.h" #include "lv_obj.h"
+1 -5
View File
@@ -13,11 +13,7 @@ extern "C" {
/********************* /*********************
* INCLUDES * INCLUDES
*********************/ *********************/
#ifdef LV_CONF_INCLUDE_SIMPLE #include "../lv_conf_internal.h"
#include "lv_conf.h"
#else
#include "../../../lv_conf.h"
#endif
#include <stddef.h> #include <stddef.h>
#include <stdbool.h> #include <stdbool.h>
+1 -5
View File
@@ -13,11 +13,7 @@ extern "C" {
/********************* /*********************
* INCLUDES * INCLUDES
*********************/ *********************/
#ifdef LV_CONF_INCLUDE_SIMPLE #include "../lv_conf_internal.h"
#include "lv_conf.h"
#else
#include "../../../lv_conf.h"
#endif
#include "../lv_core/lv_style.h" #include "../lv_core/lv_style.h"
#include "../lv_misc/lv_txt.h" #include "../lv_misc/lv_txt.h"
+3 -3
View File
@@ -10,7 +10,7 @@ CSRCS += lv_img_decoder.c
CSRCS += lv_img_cache.c CSRCS += lv_img_cache.c
CSRCS += lv_img_buf.c CSRCS += lv_img_buf.c
DEPPATH += --dep-path $(LVGL_DIR)/lvgl/src/lv_draw DEPPATH += --dep-path $(LVGL_DIR)/src/lv_draw
VPATH += :$(LVGL_DIR)/lvgl/src/lv_draw VPATH += :$(LVGL_DIR)/src/lv_draw
CFLAGS += "-I$(LVGL_DIR)lvgl/src/lv_draw" CFLAGS += "-I$(LVGL_DIR)/src/lv_draw"
+1 -5
View File
@@ -13,11 +13,7 @@ extern "C" {
/********************* /*********************
* INCLUDES * INCLUDES
*********************/ *********************/
#ifdef LV_CONF_INCLUDE_SIMPLE #include "../lv_conf_internal.h"
#include "lv_conf.h"
#else
#include "../../../lv_conf.h"
#endif
#include <stdint.h> #include <stdint.h>
#include "lv_img_buf.h" #include "lv_img_buf.h"
+1 -6
View File
@@ -13,12 +13,7 @@ extern "C" {
/********************* /*********************
* INCLUDES * INCLUDES
*********************/ *********************/
#ifdef LV_CONF_INCLUDE_SIMPLE #include "../lv_conf_internal.h"
#include "lv_conf.h"
#else
#include "../../../lv_conf.h"
#endif
#include <stdint.h> #include <stdint.h>
#include <stddef.h> #include <stddef.h>
#include <stdbool.h> #include <stdbool.h>
+3 -3
View File
@@ -6,7 +6,7 @@ CSRCS += lv_font_roboto_22.c
CSRCS += lv_font_roboto_28.c CSRCS += lv_font_roboto_28.c
CSRCS += lv_font_unscii_8.c CSRCS += lv_font_unscii_8.c
DEPPATH += --dep-path $(LVGL_DIR)/lvgl/src/lv_font DEPPATH += --dep-path $(LVGL_DIR)/src/lv_font
VPATH += :$(LVGL_DIR)/lvgl/src/lv_font VPATH += :$(LVGL_DIR)/src/lv_font
CFLAGS += "-I$(LVGL_DIR)/lvgl/src/lv_font" CFLAGS += "-I$(LVGL_DIR)/src/lv_font"
-6
View File
@@ -13,12 +13,6 @@ extern "C" {
/********************* /*********************
* INCLUDES * INCLUDES
*********************/ *********************/
#ifdef LV_CONF_INCLUDE_SIMPLE
#include "lv_conf.h"
#else
#include "../../../lv_conf.h"
#endif
#include <stdint.h> #include <stdint.h>
#include <stddef.h> #include <stddef.h>
#include <stdbool.h> #include <stdbool.h>
+2 -5
View File
@@ -5,11 +5,8 @@
#ifdef __cplusplus #ifdef __cplusplus
extern "C" { extern "C" {
#endif #endif
#ifdef LV_CONF_INCLUDE_SIMPLE
#include "lv_conf.h" #include "../lv_conf_internal.h"
#else
#include "../../../lv_conf.h"
#endif
/* In the font converter use this list as range: /* In the font converter use this list as range:
61441, 61448, 61451, 61452, 61452, 61453, 61457, 61459, 61461, 61465, 61441, 61448, 61451, 61452, 61452, 61453, 61457, 61459, 61461, 61465,
+3 -3
View File
@@ -2,7 +2,7 @@ CSRCS += lv_hal_disp.c
CSRCS += lv_hal_indev.c CSRCS += lv_hal_indev.c
CSRCS += lv_hal_tick.c CSRCS += lv_hal_tick.c
DEPPATH += --dep-path $(LVGL_DIR)/lvgl/src/lv_hal DEPPATH += --dep-path $(LVGL_DIR)/src/lv_hal
VPATH += :$(LVGL_DIR)/lvgl/src/lv_hal VPATH += :$(LVGL_DIR)/src/lv_hal
CFLAGS += "-I$(LVGL_DIR)/lvgl/src/lv_hal" CFLAGS += "-I$(LVGL_DIR)/src/lv_hal"
+1 -5
View File
@@ -15,11 +15,7 @@ extern "C" {
/********************* /*********************
* INCLUDES * INCLUDES
*********************/ *********************/
#ifdef LV_CONF_INCLUDE_SIMPLE #include "../lv_conf_internal.h"
#include "lv_conf.h"
#else
#include "../../../lv_conf.h"
#endif
#include <stdbool.h> #include <stdbool.h>
#include <stdint.h> #include <stdint.h>
-6
View File
@@ -6,12 +6,6 @@
/********************* /*********************
* INCLUDES * INCLUDES
*********************/ *********************/
#ifdef LV_CONF_INCLUDE_SIMPLE
#include "lv_conf.h"
#else
#include "../../../lv_conf.h"
#endif
#include "lv_hal_tick.h" #include "lv_hal_tick.h"
#include <stddef.h> #include <stddef.h>
+2 -5
View File
@@ -13,11 +13,8 @@ extern "C" {
/********************* /*********************
* INCLUDES * INCLUDES
*********************/ *********************/
#ifdef LV_CONF_INCLUDE_SIMPLE #include "../lv_conf_internal.h"
#include "lv_conf.h"
#else
#include "../../../lv_conf.h"
#endif
#include <stdint.h> #include <stdint.h>
#include <stdbool.h> #include <stdbool.h>
+1 -5
View File
@@ -13,11 +13,7 @@ extern "C" {
/********************* /*********************
* INCLUDES * INCLUDES
*********************/ *********************/
#ifdef LV_CONF_INCLUDE_SIMPLE #include "../lv_conf_internal.h"
#include "lv_conf.h"
#else
#include "../../../lv_conf.h"
#endif
#include <stdint.h> #include <stdint.h>
#include <stdbool.h> #include <stdbool.h>
+1 -5
View File
@@ -6,11 +6,7 @@
/********************* /*********************
* INCLUDES * INCLUDES
*********************/ *********************/
#ifdef LV_CONF_INCLUDE_SIMPLE #include "../lv_conf_internal.h"
#include "lv_conf.h"
#else
#include "../../../lv_conf.h"
#endif
#include "lv_area.h" #include "lv_area.h"
#include "lv_math.h" #include "lv_math.h"
+1 -5
View File
@@ -13,14 +13,10 @@ extern "C" {
/********************* /*********************
* INCLUDES * INCLUDES
*********************/ *********************/
#include "../lv_conf_internal.h"
#include <string.h> #include <string.h>
#include <stdbool.h> #include <stdbool.h>
#include <stdint.h> #include <stdint.h>
#ifdef LV_CONF_INCLUDE_SIMPLE
#include "lv_conf.h"
#else
#include "../../../lv_conf.h"
#endif
/********************* /*********************
* DEFINES * DEFINES
+1 -5
View File
@@ -13,11 +13,7 @@ extern "C" {
/********************* /*********************
* INCLUDES * INCLUDES
*********************/ *********************/
#ifdef LV_CONF_INCLUDE_SIMPLE #include "../lv_conf_internal.h"
#include "lv_conf.h"
#else
#include "../../../lv_conf.h"
#endif
#include <stdbool.h> #include <stdbool.h>
#include <stdint.h> #include <stdint.h>
+1 -5
View File
@@ -13,11 +13,7 @@ extern "C" {
/********************* /*********************
* INCLUDES * INCLUDES
*********************/ *********************/
#ifdef LV_CONF_INCLUDE_SIMPLE #include "../lv_conf_internal.h"
#include "lv_conf.h"
#else
#include "../../../lv_conf.h"
#endif
/*Error checking*/ /*Error checking*/
#if LV_COLOR_DEPTH == 24 #if LV_COLOR_DEPTH == 24
+3 -6
View File
@@ -13,11 +13,7 @@ extern "C" {
/********************* /*********************
* INCLUDES * INCLUDES
*********************/ *********************/
#ifdef LV_CONF_INCLUDE_SIMPLE #include "../lv_conf_internal.h"
#include "lv_conf.h"
#else
#include "../../../lv_conf.h"
#endif
#if LV_USE_FILESYSTEM #if LV_USE_FILESYSTEM
@@ -34,8 +30,9 @@ extern "C" {
/********************** /**********************
* TYPEDEFS * TYPEDEFS
**********************/ **********************/
/** /**
* Errors in the filesystem module. * Errors in the file system module.
*/ */
enum { enum {
LV_FS_RES_OK = 0, LV_FS_RES_OK = 0,
-7
View File
@@ -13,13 +13,6 @@ extern "C" {
/********************* /*********************
* INCLUDES * INCLUDES
*********************/ *********************/
#ifdef LV_CONF_INCLUDE_SIMPLE
#include "lv_conf.h"
#else
#include "../../../lv_conf.h"
#endif
#include <stdint.h> #include <stdint.h>
#include <stdbool.h> #include <stdbool.h>
#include "lv_mem.h" #include "lv_mem.h"
+1 -5
View File
@@ -13,11 +13,7 @@ extern "C" {
/********************* /*********************
* INCLUDES * INCLUDES
*********************/ *********************/
#ifdef LV_CONF_INCLUDE_SIMPLE #include "../lv_conf_internal.h"
#include "lv_conf.h"
#else
#include "../../../lv_conf.h"
#endif
#include <stdint.h> #include <stdint.h>
/********************* /*********************
+1 -5
View File
@@ -13,11 +13,7 @@ extern "C" {
/********************* /*********************
* INCLUDES * INCLUDES
*********************/ *********************/
#ifdef LV_CONF_INCLUDE_SIMPLE #include "../lv_conf_internal.h"
#include "lv_conf.h"
#else
#include "../../../lv_conf.h"
#endif
#include <stdint.h> #include <stdint.h>
#include <stddef.h> #include <stddef.h>
+3 -3
View File
@@ -15,7 +15,7 @@ CSRCS += lv_async.c
CSRCS += lv_printf.c CSRCS += lv_printf.c
CSRCS += lv_bidi.c CSRCS += lv_bidi.c
DEPPATH += --dep-path $(LVGL_DIR)/lvgl/src/lv_misc DEPPATH += --dep-path $(LVGL_DIR)/src/lv_misc
VPATH += :$(LVGL_DIR)/lvgl/src/lv_misc VPATH += :$(LVGL_DIR)/src/lv_misc
CFLAGS += "-I$(LVGL_DIR)/lvgl/src/lv_misc" CFLAGS += "-I$(LVGL_DIR)/src/lv_misc"
+1 -6
View File
@@ -37,12 +37,7 @@
extern "C" { extern "C" {
#endif #endif
#include "../lv_conf_internal.h"
#ifdef LV_CONF_INCLUDE_SIMPLE
#include "lv_conf.h"
#else
#include "../../../lv_conf.h"
#endif
#if LV_SPRINTF_CUSTOM == 0 #if LV_SPRINTF_CUSTOM == 0
+1 -5
View File
@@ -14,11 +14,7 @@ extern "C" {
/********************* /*********************
* INCLUDES * INCLUDES
*********************/ *********************/
#ifdef LV_CONF_INCLUDE_SIMPLE #include "../lv_conf_internal.h"
#include "lv_conf.h"
#else
#include "../../../lv_conf.h"
#endif
#include <stdint.h> #include <stdint.h>
#include <stdbool.h> #include <stdbool.h>
+1 -5
View File
@@ -13,11 +13,7 @@ extern "C" {
/********************* /*********************
* INCLUDES * INCLUDES
*********************/ *********************/
#ifdef LV_CONF_INCLUDE_SIMPLE #include "../lv_conf_internal.h"
#include "lv_conf.h"
#else
#include "../../../lv_conf.h"
#endif
#include <stdbool.h> #include <stdbool.h>
#include "lv_area.h" #include "lv_area.h"
+1 -5
View File
@@ -13,11 +13,7 @@ extern "C" {
/********************* /*********************
* INCLUDES * INCLUDES
*********************/ *********************/
#ifdef LV_CONF_INCLUDE_SIMPLE #include "../lv_conf_internal.h"
#include "lv_conf.h"
#else
#include "../../../lv_conf.h"
#endif
#if LV_USE_ARC != 0 #if LV_USE_ARC != 0
+1 -5
View File
@@ -13,11 +13,7 @@ extern "C" {
/********************* /*********************
* INCLUDES * INCLUDES
*********************/ *********************/
#ifdef LV_CONF_INCLUDE_SIMPLE #include "../lv_conf_internal.h"
#include "lv_conf.h"
#else
#include "../../../lv_conf.h"
#endif
#if LV_USE_BAR != 0 #if LV_USE_BAR != 0
+1 -5
View File
@@ -13,11 +13,7 @@ extern "C" {
/********************* /*********************
* INCLUDES * INCLUDES
*********************/ *********************/
#ifdef LV_CONF_INCLUDE_SIMPLE #include "../lv_conf_internal.h"
#include "lv_conf.h"
#else
#include "../../../lv_conf.h"
#endif
#if LV_USE_BTN != 0 #if LV_USE_BTN != 0
+1 -5
View File
@@ -13,11 +13,7 @@ extern "C" {
/********************* /*********************
* INCLUDES * INCLUDES
*********************/ *********************/
#ifdef LV_CONF_INCLUDE_SIMPLE #include "../lv_conf_internal.h"
#include "lv_conf.h"
#else
#include "../../../lv_conf.h"
#endif
#if LV_USE_BTNM != 0 #if LV_USE_BTNM != 0
+1 -5
View File
@@ -13,11 +13,7 @@ extern "C" {
/********************* /*********************
* INCLUDES * INCLUDES
*********************/ *********************/
#ifdef LV_CONF_INCLUDE_SIMPLE #include "../lv_conf_internal.h"
#include "lv_conf.h"
#else
#include "../../../lv_conf.h"
#endif
#if LV_USE_CALENDAR != 0 #if LV_USE_CALENDAR != 0
+1 -5
View File
@@ -13,11 +13,7 @@ extern "C" {
/********************* /*********************
* INCLUDES * INCLUDES
*********************/ *********************/
#ifdef LV_CONF_INCLUDE_SIMPLE #include "../lv_conf_internal.h"
#include "lv_conf.h"
#else
#include "../../../lv_conf.h"
#endif
#if LV_USE_CANVAS != 0 #if LV_USE_CANVAS != 0
+1 -5
View File
@@ -13,11 +13,7 @@ extern "C" {
/********************* /*********************
* INCLUDES * INCLUDES
*********************/ *********************/
#ifdef LV_CONF_INCLUDE_SIMPLE #include "../lv_conf_internal.h"
#include "lv_conf.h"
#else
#include "../../../lv_conf.h"
#endif
#if LV_USE_CB != 0 #if LV_USE_CB != 0
+1 -5
View File
@@ -13,11 +13,7 @@ extern "C" {
/********************* /*********************
* INCLUDES * INCLUDES
*********************/ *********************/
#ifdef LV_CONF_INCLUDE_SIMPLE #include "../lv_conf_internal.h"
#include "lv_conf.h"
#else
#include "../../../lv_conf.h"
#endif
#if LV_USE_CHART != 0 #if LV_USE_CHART != 0
+1 -5
View File
@@ -13,11 +13,7 @@ extern "C" {
/********************* /*********************
* INCLUDES * INCLUDES
*********************/ *********************/
#ifdef LV_CONF_INCLUDE_SIMPLE #include "../lv_conf_internal.h"
#include "lv_conf.h"
#else
#include "../../../lv_conf.h"
#endif
#if LV_USE_CONT != 0 #if LV_USE_CONT != 0
+1 -5
View File
@@ -13,11 +13,7 @@ extern "C" {
/********************* /*********************
* INCLUDES * INCLUDES
*********************/ *********************/
#ifdef LV_CONF_INCLUDE_SIMPLE #include "../lv_conf_internal.h"
#include "lv_conf.h"
#else
#include "../../../lv_conf.h"
#endif
#if LV_USE_CPICKER != 0 #if LV_USE_CPICKER != 0
+1 -5
View File
@@ -13,11 +13,7 @@ extern "C" {
/********************* /*********************
* INCLUDES * INCLUDES
*********************/ *********************/
#ifdef LV_CONF_INCLUDE_SIMPLE #include "../lv_conf_internal.h"
#include "lv_conf.h"
#else
#include "../../../lv_conf.h"
#endif
#if LV_USE_DDLIST != 0 #if LV_USE_DDLIST != 0
+1 -5
View File
@@ -13,11 +13,7 @@ extern "C" {
/********************* /*********************
* INCLUDES * INCLUDES
*********************/ *********************/
#ifdef LV_CONF_INCLUDE_SIMPLE #include "../lv_conf_internal.h"
#include "lv_conf.h"
#else
#include "../../../lv_conf.h"
#endif
#if LV_USE_GAUGE != 0 #if LV_USE_GAUGE != 0
+1 -5
View File
@@ -13,11 +13,7 @@ extern "C" {
/********************* /*********************
* INCLUDES * INCLUDES
*********************/ *********************/
#ifdef LV_CONF_INCLUDE_SIMPLE #include "../lv_conf_internal.h"
#include "lv_conf.h"
#else
#include "../../../lv_conf.h"
#endif
#if LV_USE_IMG != 0 #if LV_USE_IMG != 0
+1 -5
View File
@@ -13,11 +13,7 @@ extern "C" {
/********************* /*********************
* INCLUDES * INCLUDES
*********************/ *********************/
#ifdef LV_CONF_INCLUDE_SIMPLE #include "../lv_conf_internal.h"
#include "lv_conf.h"
#else
#include "../../../lv_conf.h"
#endif
#if LV_USE_IMGBTN != 0 #if LV_USE_IMGBTN != 0
+1 -5
View File
@@ -13,11 +13,7 @@ extern "C" {
/********************* /*********************
* INCLUDES * INCLUDES
*********************/ *********************/
#ifdef LV_CONF_INCLUDE_SIMPLE #include "../lv_conf_internal.h"
#include "lv_conf.h"
#else
#include "../../../lv_conf.h"
#endif
#if LV_USE_KB != 0 #if LV_USE_KB != 0
+1 -5
View File
@@ -13,11 +13,7 @@ extern "C" {
/********************* /*********************
* INCLUDES * INCLUDES
*********************/ *********************/
#ifdef LV_CONF_INCLUDE_SIMPLE #include "../lv_conf_internal.h"
#include "lv_conf.h"
#else
#include "../../../lv_conf.h"
#endif
#if LV_USE_LABEL != 0 #if LV_USE_LABEL != 0
+1 -5
View File
@@ -13,11 +13,7 @@ extern "C" {
/********************* /*********************
* INCLUDES * INCLUDES
*********************/ *********************/
#ifdef LV_CONF_INCLUDE_SIMPLE #include "../lv_conf_internal.h"
#include "lv_conf.h"
#else
#include "../../../lv_conf.h"
#endif
#if LV_USE_LED != 0 #if LV_USE_LED != 0
+1 -5
View File
@@ -13,11 +13,7 @@ extern "C" {
/********************* /*********************
* INCLUDES * INCLUDES
*********************/ *********************/
#ifdef LV_CONF_INCLUDE_SIMPLE #include "../lv_conf_internal.h"
#include "lv_conf.h"
#else
#include "../../../lv_conf.h"
#endif
#if LV_USE_LINE != 0 #if LV_USE_LINE != 0
+1 -5
View File
@@ -13,11 +13,7 @@ extern "C" {
/********************* /*********************
* INCLUDES * INCLUDES
*********************/ *********************/
#ifdef LV_CONF_INCLUDE_SIMPLE #include "../lv_conf_internal.h"
#include "lv_conf.h"
#else
#include "../../../lv_conf.h"
#endif
#if LV_USE_LIST != 0 #if LV_USE_LIST != 0
+1 -5
View File
@@ -13,11 +13,7 @@ extern "C" {
/********************* /*********************
* INCLUDES * INCLUDES
*********************/ *********************/
#ifdef LV_CONF_INCLUDE_SIMPLE #include "../lv_conf_internal.h"
#include "lv_conf.h"
#else
#include "../../../lv_conf.h"
#endif
#if LV_USE_LMETER != 0 #if LV_USE_LMETER != 0
+1 -5
View File
@@ -13,11 +13,7 @@ extern "C" {
/********************* /*********************
* INCLUDES * INCLUDES
*********************/ *********************/
#ifdef LV_CONF_INCLUDE_SIMPLE #include "../lv_conf_internal.h"
#include "lv_conf.h"
#else
#include "../../../lv_conf.h"
#endif
#if LV_USE_MBOX != 0 #if LV_USE_MBOX != 0

Some files were not shown because too many files have changed in this diff Show More