fix(conf) make a better style alignment in lv_conf_internal.h (#2652)
and reorder Kconfig and src/lv_conf_kconfig.h as lv_conf_template.h Signed-off-by: Xiang Xiao <xiaoxiang@xiaomi.com>
This commit is contained in:
22
Kconfig
22
Kconfig
@@ -2,14 +2,6 @@
|
||||
|
||||
menu "LVGL configuration"
|
||||
|
||||
config LV_ATTRIBUTE_FAST_MEM_USE_IRAM
|
||||
bool "Set IRAM as LV_ATTRIBUTE_FAST_MEM"
|
||||
help
|
||||
Set this option to configure IRAM as LV_ATTRIBUTE_FAST_MEM
|
||||
|
||||
config LV_CONF_MINIMAL
|
||||
bool "LVGL minimal configuration."
|
||||
|
||||
# Define CONFIG_LV_CONF_SKIP so we can use LVGL
|
||||
# without lv_conf.h file, the lv_conf_internal.h and
|
||||
# lv_conf_kconfig.h files are used instead.
|
||||
@@ -17,6 +9,9 @@ menu "LVGL configuration"
|
||||
bool
|
||||
default y
|
||||
|
||||
config LV_CONF_MINIMAL
|
||||
bool "LVGL minimal configuration."
|
||||
|
||||
menu "Color settings"
|
||||
choice
|
||||
prompt "Color depth."
|
||||
@@ -97,12 +92,10 @@ menu "LVGL configuration"
|
||||
default 30
|
||||
|
||||
config LV_TICK_CUSTOM
|
||||
bool
|
||||
prompt "Use a custom tick source"
|
||||
bool "Use a custom tick source"
|
||||
|
||||
config LV_TICK_CUSTOM_INCLUDE
|
||||
string
|
||||
prompt "Header for the system time function"
|
||||
string "Header for the system time function"
|
||||
default "Arduino.h"
|
||||
depends on LV_TICK_CUSTOM
|
||||
|
||||
@@ -319,6 +312,11 @@ menu "LVGL configuration"
|
||||
config LV_BIG_ENDIAN_SYSTEM
|
||||
bool "For big endian systems set to 1"
|
||||
|
||||
config LV_ATTRIBUTE_FAST_MEM_USE_IRAM
|
||||
bool "Set IRAM as LV_ATTRIBUTE_FAST_MEM"
|
||||
help
|
||||
Set this option to configure IRAM as LV_ATTRIBUTE_FAST_MEM
|
||||
|
||||
config LV_USE_LARGE_COORD
|
||||
bool "Extend the default -32k..32k coordinate range to -4M..4M by using int32_t for coordinates instead of int16_t"
|
||||
endmenu
|
||||
|
||||
@@ -36,7 +36,7 @@ fout.write(
|
||||
#endif
|
||||
|
||||
/*If "lv_conf.h" is available from here try to use it later.*/
|
||||
#if defined __has_include
|
||||
#ifdef __has_include
|
||||
# if __has_include("lv_conf.h")
|
||||
# ifndef LV_CONF_INCLUDE_SIMPLE
|
||||
# define LV_CONF_INCLUDE_SIMPLE
|
||||
@@ -45,8 +45,8 @@ fout.write(
|
||||
#endif
|
||||
|
||||
/*If lv_conf.h is not skipped include it*/
|
||||
#if !defined(LV_CONF_SKIP)
|
||||
# if defined(LV_CONF_PATH) /*If there is a path defined for lv_conf.h use it*/
|
||||
#ifndef LV_CONF_SKIP
|
||||
# ifdef LV_CONF_PATH /*If there is a path defined for lv_conf.h use it*/
|
||||
# define __LV_TO_STR_AUX(x) #x
|
||||
# define __LV_TO_STR(x) __LV_TO_STR_AUX(x)
|
||||
# include __LV_TO_STR(LV_CONF_PATH)
|
||||
@@ -117,12 +117,10 @@ fout.write(
|
||||
LV_EXPORT_CONST_INT(LV_DPI_DEF);
|
||||
|
||||
/*If running without lv_conf.h add typdesf with default value*/
|
||||
#if defined(LV_CONF_SKIP)
|
||||
|
||||
#ifdef LV_CONF_SKIP
|
||||
# if defined(_MSC_VER) && !defined(_CRT_SECURE_NO_WARNINGS) /*Disable warnings for Visual Studio*/
|
||||
# define _CRT_SECURE_NO_WARNINGS
|
||||
# endif
|
||||
|
||||
#endif /*defined(LV_CONF_SKIP)*/
|
||||
|
||||
#endif /*LV_CONF_INTERNAL_H*/
|
||||
|
||||
@@ -19,7 +19,7 @@
|
||||
#endif
|
||||
|
||||
/*If "lv_conf.h" is available from here try to use it later.*/
|
||||
#if defined __has_include
|
||||
#ifdef __has_include
|
||||
# if __has_include("lv_conf.h")
|
||||
# ifndef LV_CONF_INCLUDE_SIMPLE
|
||||
# define LV_CONF_INCLUDE_SIMPLE
|
||||
@@ -28,8 +28,8 @@
|
||||
#endif
|
||||
|
||||
/*If lv_conf.h is not skipped include it*/
|
||||
#if !defined(LV_CONF_SKIP)
|
||||
# if defined(LV_CONF_PATH) /*If there is a path defined for lv_conf.h use it*/
|
||||
#ifndef LV_CONF_SKIP
|
||||
# ifdef LV_CONF_PATH /*If there is a path defined for lv_conf.h use it*/
|
||||
# define __LV_TO_STR_AUX(x) #x
|
||||
# define __LV_TO_STR(x) __LV_TO_STR_AUX(x)
|
||||
# include __LV_TO_STR(LV_CONF_PATH)
|
||||
@@ -1650,7 +1650,7 @@ e.g. "stm32f769xx.h" or "stm32f429xx.h"*/
|
||||
# endif
|
||||
#endif
|
||||
#if LV_USE_FREETYPE
|
||||
/*Memory used by FreeType to cache characters [bytes]*/
|
||||
/*Memory used by FreeType to cache characters [bytes] (-1: no caching)*/
|
||||
#ifndef LV_FREETYPE_CACHE_SIZE
|
||||
# ifdef CONFIG_LV_FREETYPE_CACHE_SIZE
|
||||
# define LV_FREETYPE_CACHE_SIZE CONFIG_LV_FREETYPE_CACHE_SIZE
|
||||
@@ -1683,12 +1683,10 @@ e.g. "stm32f769xx.h" or "stm32f429xx.h"*/
|
||||
LV_EXPORT_CONST_INT(LV_DPI_DEF);
|
||||
|
||||
/*If running without lv_conf.h add typdesf with default value*/
|
||||
#if defined(LV_CONF_SKIP)
|
||||
|
||||
#ifdef LV_CONF_SKIP
|
||||
# if defined(_MSC_VER) && !defined(_CRT_SECURE_NO_WARNINGS) /*Disable warnings for Visual Studio*/
|
||||
# define _CRT_SECURE_NO_WARNINGS
|
||||
# endif
|
||||
|
||||
#endif /*defined(LV_CONF_SKIP)*/
|
||||
|
||||
#endif /*LV_CONF_INTERNAL_H*/
|
||||
|
||||
@@ -11,7 +11,7 @@ extern "C" {
|
||||
# include LV_CONF_KCONFIG_EXTERNAL_INCLUDE
|
||||
#else
|
||||
|
||||
# if defined ESP_PLATFORM
|
||||
# ifdef ESP_PLATFORM
|
||||
# include "sdkconfig.h"
|
||||
# include "esp_attr.h"
|
||||
# endif
|
||||
@@ -22,26 +22,20 @@ extern "C" {
|
||||
|
||||
#endif /*LV_CONF_KCONFIG_EXTERNAL_INCLUDE*/
|
||||
|
||||
/*******************
|
||||
* LV_MEM_SIZE
|
||||
*******************/
|
||||
|
||||
#ifndef LV_MEM_SIZE
|
||||
#if defined (CONFIG_LV_MEM_SIZE_KILOBYTES)
|
||||
#define CONFIG_LV_MEM_SIZE (CONFIG_LV_MEM_SIZE_KILOBYTES * 1024U)
|
||||
#endif
|
||||
#endif
|
||||
|
||||
/*******************
|
||||
* LV COLOR CHROMA KEY
|
||||
*******************/
|
||||
|
||||
#ifndef LV_COLOR_CHROMA_KEY
|
||||
#if defined (CONFIG_LV_COLOR_CHROMA_KEY_HEX)
|
||||
#ifdef CONFIG_LV_COLOR_CHROMA_KEY_HEX
|
||||
# define CONFIG_LV_COLOR_CHROMA_KEY lv_color_hex(CONFIG_LV_COLOR_CHROMA_KEY_HEX)
|
||||
#else
|
||||
#define CONFIG_LV_COLOR_CHROMA_KEY lv_color_hex(0x00ff00) /* pure green */
|
||||
#endif
|
||||
|
||||
/*******************
|
||||
* LV_MEM_SIZE
|
||||
*******************/
|
||||
|
||||
#ifdef CONFIG_LV_MEM_SIZE_KILOBYTES
|
||||
# define CONFIG_LV_MEM_SIZE (CONFIG_LV_MEM_SIZE_KILOBYTES * 1024U)
|
||||
#endif
|
||||
|
||||
/********************
|
||||
@@ -57,88 +51,82 @@ extern "C" {
|
||||
/*------------------
|
||||
* DEFAULT FONT
|
||||
*-----------------*/
|
||||
#ifndef LV_THEME_DEFAULT_FONT
|
||||
#if defined CONFIG_LV_FONT_DEFAULT_MONTSERRAT_8
|
||||
#ifdef CONFIG_LV_FONT_DEFAULT_MONTSERRAT_8
|
||||
# define CONFIG_LV_THEME_DEFAULT_FONT &lv_font_montserrat_8
|
||||
#elif defined CONFIG_LV_FONT_DEFAULT_MONTSERRAT_10
|
||||
#elif defined(CONFIG_LV_FONT_DEFAULT_MONTSERRAT_10)
|
||||
# define CONFIG_LV_THEME_DEFAULT_FONT &lv_font_montserrat_10
|
||||
#elif defined CONFIG_LV_FONT_DEFAULT_MONTSERRAT_12
|
||||
#elif defined(CONFIG_LV_FONT_DEFAULT_MONTSERRAT_12)
|
||||
# define CONFIG_LV_THEME_DEFAULT_FONT &lv_font_montserrat_12
|
||||
#elif defined CONFIG_LV_FONT_DEFAULT_MONTSERRAT_14
|
||||
#elif defined(CONFIG_LV_FONT_DEFAULT_MONTSERRAT_14)
|
||||
# define CONFIG_LV_THEME_DEFAULT_FONT &lv_font_montserrat_14
|
||||
#elif defined CONFIG_LV_FONT_DEFAULT_MONTSERRAT_16
|
||||
#elif defined(CONFIG_LV_FONT_DEFAULT_MONTSERRAT_16)
|
||||
# define CONFIG_LV_THEME_DEFAULT_FONT &lv_font_montserrat_16
|
||||
#elif defined CONFIG_LV_FONT_DEFAULT_MONTSERRAT_18
|
||||
#elif defined(CONFIG_LV_FONT_DEFAULT_MONTSERRAT_18)
|
||||
# define CONFIG_LV_THEME_DEFAULT_FONT &lv_font_montserrat_18
|
||||
#elif defined CONFIG_LV_FONT_DEFAULT_MONTSERRAT_20
|
||||
#elif defined(CONFIG_LV_FONT_DEFAULT_MONTSERRAT_20)
|
||||
# define CONFIG_LV_THEME_DEFAULT_FONT &lv_font_montserrat_20
|
||||
#elif defined CONFIG_LV_FONT_DEFAULT_MONTSERRAT_22
|
||||
#elif defined(CONFIG_LV_FONT_DEFAULT_MONTSERRAT_22)
|
||||
# define CONFIG_LV_THEME_DEFAULT_FONT &lv_font_montserrat_22
|
||||
#elif defined CONFIG_LV_FONT_DEFAULT_MONTSERRAT_24
|
||||
#elif defined(CONFIG_LV_FONT_DEFAULT_MONTSERRAT_24)
|
||||
# define CONFIG_LV_THEME_DEFAULT_FONT &lv_font_montserrat_24
|
||||
#elif defined CONFIG_LV_FONT_DEFAULT_MONTSERRAT_26
|
||||
#elif defined(CONFIG_LV_FONT_DEFAULT_MONTSERRAT_26)
|
||||
# define CONFIG_LV_THEME_DEFAULT_FONT &lv_font_montserrat_26
|
||||
#elif defined CONFIG_LV_FONT_DEFAULT_MONTSERRAT_28
|
||||
#elif defined(CONFIG_LV_FONT_DEFAULT_MONTSERRAT_28)
|
||||
# define CONFIG_LV_THEME_DEFAULT_FONT &lv_font_montserrat_28
|
||||
#elif defined CONFIG_LV_FONT_DEFAULT_MONTSERRAT_30
|
||||
#elif defined(CONFIG_LV_FONT_DEFAULT_MONTSERRAT_30)
|
||||
# define CONFIG_LV_THEME_DEFAULT_FONT &lv_font_montserrat_30
|
||||
#elif defined CONFIG_LV_FONT_DEFAULT_MONTSERRAT_32
|
||||
#elif defined(CONFIG_LV_FONT_DEFAULT_MONTSERRAT_32)
|
||||
# define CONFIG_LV_THEME_DEFAULT_FONT &lv_font_montserrat_32
|
||||
#elif defined CONFIG_LV_FONT_DEFAULT_MONTSERRAT_34
|
||||
#elif defined(CONFIG_LV_FONT_DEFAULT_MONTSERRAT_34)
|
||||
# define CONFIG_LV_THEME_DEFAULT_FONT &lv_font_montserrat_34
|
||||
#elif defined CONFIG_LV_FONT_DEFAULT_MONTSERRAT_36
|
||||
#elif defined(CONFIG_LV_FONT_DEFAULT_MONTSERRAT_36)
|
||||
# define CONFIG_LV_THEME_DEFAULT_FONT &lv_font_montserrat_36
|
||||
#elif defined CONFIG_LV_FONT_DEFAULT_MONTSERRAT_38
|
||||
#elif defined(CONFIG_LV_FONT_DEFAULT_MONTSERRAT_38)
|
||||
# define CONFIG_LV_THEME_DEFAULT_FONT &lv_font_montserrat_38
|
||||
#elif defined CONFIG_LV_FONT_DEFAULT_MONTSERRAT_40
|
||||
#elif defined(CONFIG_LV_FONT_DEFAULT_MONTSERRAT_40)
|
||||
# define CONFIG_LV_THEME_DEFAULT_FONT &lv_font_montserrat_40
|
||||
#elif defined CONFIG_LV_FONT_DEFAULT_MONTSERRAT_42
|
||||
#elif defined(CONFIG_LV_FONT_DEFAULT_MONTSERRAT_42)
|
||||
# define CONFIG_LV_THEME_DEFAULT_FONT &lv_font_montserrat_42
|
||||
#elif defined CONFIG_LV_FONT_DEFAULT_MONTSERRAT_44
|
||||
#elif defined(CONFIG_LV_FONT_DEFAULT_MONTSERRAT_44)
|
||||
# define CONFIG_LV_THEME_DEFAULT_FONT &lv_font_montserrat_44
|
||||
#elif defined CONFIG_LV_FONT_DEFAULT_MONTSERRAT_46
|
||||
#elif defined(CONFIG_LV_FONT_DEFAULT_MONTSERRAT_46)
|
||||
# define CONFIG_LV_THEME_DEFAULT_FONT &lv_font_montserrat_46
|
||||
#elif defined CONFIG_LV_FONT_DEFAULT_MONTSERRAT_48
|
||||
#elif defined(CONFIG_LV_FONT_DEFAULT_MONTSERRAT_48)
|
||||
# define CONFIG_LV_THEME_DEFAULT_FONT &lv_font_montserrat_48
|
||||
#elif defined CONFIG_LV_FONT_DEFAULT_UNSCII_8
|
||||
#elif defined(CONFIG_LV_FONT_DEFAULT_UNSCII_8)
|
||||
# define CONFIG_LV_THEME_DEFAULT_FONT &lv_font_unscii_8
|
||||
#elif defined CONFIG_LV_FONT_DEFAULT_UNSCII_16
|
||||
#elif defined(CONFIG_LV_FONT_DEFAULT_UNSCII_16)
|
||||
# define CONFIG_LV_THEME_DEFAULT_FONT &lv_font_unscii_16
|
||||
#elif defined CONFIG_LV_FONT_DEFAULT_MONTSERRAT12SUBPX
|
||||
#elif defined(CONFIG_LV_FONT_DEFAULT_MONTSERRAT12SUBPX)
|
||||
# define CONFIG_LV_THEME_DEFAULT_FONT &lv_font_montserrat_12_subpx
|
||||
#elif defined CONFIG_LV_FONT_DEFAULT_MONTSERRAT28COMPRESSED
|
||||
#elif defined(CONFIG_LV_FONT_DEFAULT_MONTSERRAT28COMPRESSED)
|
||||
# define CONFIG_LV_THEME_DEFAULT_FONT &lv_font_montserrat_28_compressed
|
||||
#elif defined CONFIG_LV_FONT_DEFAULT_DEJAVU_16_PERSIAN_HEBREW
|
||||
#elif defined(CONFIG_LV_FONT_DEFAULT_DEJAVU_16_PERSIAN_HEBREW)
|
||||
# define CONFIG_LV_THEME_DEFAULT_FONT &lv_font_dejavu_16_persian_hebrew
|
||||
#elif defined CONFIG_LV_FONT_DEFAULT_SIMSUN_16_CJK
|
||||
#elif defined(CONFIG_LV_FONT_DEFAULT_SIMSUN_16_CJK)
|
||||
# define CONFIG_LV_THEME_DEFAULT_FONT &lv_font_simsun_16_cjk
|
||||
#endif
|
||||
#endif
|
||||
|
||||
/*------------------
|
||||
* TEXT ENCODING
|
||||
*-----------------*/
|
||||
#ifndef LV_TEXT_ENC
|
||||
#ifdef CONFIG_LV_TXT_ENC_UTF8
|
||||
# define CONFIG_LV_TXT_ENC LV_TXT_ENC_UTF8
|
||||
#elif defined CONFIG_LV_TXT_ENC_ASCII
|
||||
#elif defined(CONFIG_LV_TXT_ENC_ASCII)
|
||||
# define CONFIG_LV_TXT_ENC LV_TXT_ENC_ASCII
|
||||
#endif
|
||||
#endif
|
||||
|
||||
/*------------------
|
||||
* BIDI DIRECTION
|
||||
*-----------------*/
|
||||
|
||||
#ifndef LV_BIDI_BASE_DIR_DEF
|
||||
#ifdef CONFIG_LV_BASE_DIR_LTR
|
||||
# define CONFIG_LV_BIDI_BASE_DIR_DEF LV_BASE_DIR_LTR
|
||||
#elif defined CONFIG_LV_BASE_DIR_RTL
|
||||
#elif defined(CONFIG_LV_BASE_DIR_RTL)
|
||||
# define CONFIG_LV_BIDI_BASE_DIR_DEF LV_BASE_DIR_RTL
|
||||
#elif defined CONFIG_LV_BASE_DIR_AUTO
|
||||
#elif defined(CONFIG_LV_BASE_DIR_AUTO)
|
||||
# define CONFIG_LV_BIDI_BASE_DIR_DEF LV_BASE_DIR_AUTO
|
||||
#endif
|
||||
#endif
|
||||
|
||||
#ifdef __cplusplus
|
||||
} /*extern "C"*/
|
||||
|
||||
Reference in New Issue
Block a user