update lv_conf_temaple.h

This commit is contained in:
Gabor Kiss-Vamosi
2022-07-21 22:45:23 +02:00
parent 4c980c1a94
commit 59818094c5
3 changed files with 275 additions and 272 deletions
+50 -54
View File
@@ -47,6 +47,9 @@
#endif #endif
#endif /*LV_USE_BUILTIN_MALLOC*/ #endif /*LV_USE_BUILTIN_MALLOC*/
/*Enable lv_memcpy_builtin, lv_memset_builtin, lv_strlen_builtin, lv_strncpy_builtin*/
#define LV_USE_BUILTIN_MEMCPY 1
/*Enable and configure the built-in (v)snprintf */ /*Enable and configure the built-in (v)snprintf */
#define LV_USE_BUILTIN_SNPRINTF 1 #define LV_USE_BUILTIN_SNPRINTF 1
#if LV_USE_BUILTIN_SNPRINTF #if LV_USE_BUILTIN_SNPRINTF
@@ -434,11 +437,13 @@
#define LV_USE_ARABIC_PERSIAN_CHARS 0 #define LV_USE_ARABIC_PERSIAN_CHARS 0
/*================== /*==================
* WIDGET USAGE * WIDGETS
*================*/ *================*/
/*Documentation of the widgets: https://docs.lvgl.io/latest/en/html/widgets/index.html*/ /*Documentation of the widgets: https://docs.lvgl.io/latest/en/html/widgets/index.html*/
#define LV_USE_ANIMIMG 1
#define LV_USE_ARC 1 #define LV_USE_ARC 1
#define LV_USE_BAR 1 #define LV_USE_BAR 1
@@ -447,47 +452,6 @@
#define LV_USE_BTNMATRIX 1 #define LV_USE_BTNMATRIX 1
#define LV_USE_CANVAS 1
#define LV_USE_CHECKBOX 1
#define LV_USE_DROPDOWN 1 /*Requires: lv_label*/
#define LV_USE_IMG 1 /*Requires: lv_label*/
#define LV_USE_LABEL 1
#if LV_USE_LABEL
#define LV_LABEL_TEXT_SELECTION 1 /*Enable selecting text of the label*/
#define LV_LABEL_LONG_TXT_HINT 1 /*Store some extra info in labels to speed up drawing of very long texts*/
#endif
#define LV_USE_LINE 1
#define LV_USE_ROLLER 1 /*Requires: lv_label*/
#if LV_USE_ROLLER
#define LV_ROLLER_INF_PAGES 7 /*Number of extra "pages" when the roller is infinite*/
#endif
#define LV_USE_SLIDER 1 /*Requires: lv_bar*/
#define LV_USE_SWITCH 1
#define LV_USE_TEXTAREA 1 /*Requires: lv_label*/
#if LV_USE_TEXTAREA != 0
#define LV_TEXTAREA_DEF_PWD_SHOW_TIME 1500 /*ms*/
#endif
#define LV_USE_TABLE 1
/*==================
* EXTRA COMPONENTS
*==================*/
/*-----------
* Widgets
*----------*/
#define LV_USE_ANIMIMG 1
#define LV_USE_CALENDAR 1 #define LV_USE_CALENDAR 1
#if LV_USE_CALENDAR #if LV_USE_CALENDAR
#define LV_CALENDAR_WEEK_STARTS_MONDAY 0 #define LV_CALENDAR_WEEK_STARTS_MONDAY 0
@@ -502,16 +466,32 @@
#define LV_USE_CALENDAR_HEADER_DROPDOWN 1 #define LV_USE_CALENDAR_HEADER_DROPDOWN 1
#endif /*LV_USE_CALENDAR*/ #endif /*LV_USE_CALENDAR*/
#define LV_USE_CANVAS 1
#define LV_USE_CHART 1 #define LV_USE_CHART 1
#define LV_USE_CHECKBOX 1
#define LV_USE_COLORWHEEL 1 #define LV_USE_COLORWHEEL 1
#define LV_USE_DROPDOWN 1 /*Requires: lv_label*/
#define LV_USE_IMG 1 /*Requires: lv_label*/
#define LV_USE_IMGBTN 1 #define LV_USE_IMGBTN 1
#define LV_USE_KEYBOARD 1 #define LV_USE_KEYBOARD 1
#define LV_USE_LABEL 1
#if LV_USE_LABEL
#define LV_LABEL_TEXT_SELECTION 1 /*Enable selecting text of the label*/
#define LV_LABEL_LONG_TXT_HINT 1 /*Store some extra info in labels to speed up drawing of very long texts*/
#endif
#define LV_USE_LED 1 #define LV_USE_LED 1
#define LV_USE_LINE 1
#define LV_USE_LIST 1 #define LV_USE_LIST 1
#define LV_USE_MENU 1 #define LV_USE_MENU 1
@@ -520,6 +500,13 @@
#define LV_USE_MSGBOX 1 #define LV_USE_MSGBOX 1
#define LV_USE_ROLLER 1 /*Requires: lv_label*/
#if LV_USE_ROLLER
#define LV_ROLLER_INF_PAGES 7 /*Number of extra "pages" when the roller is infinite*/
#endif
#define LV_USE_SLIDER 1 /*Requires: lv_bar*/
#define LV_USE_SPAN 1 #define LV_USE_SPAN 1
#if LV_USE_SPAN #if LV_USE_SPAN
/*A line text can contain maximum num of span descriptor */ /*A line text can contain maximum num of span descriptor */
@@ -530,15 +517,24 @@
#define LV_USE_SPINNER 1 #define LV_USE_SPINNER 1
#define LV_USE_SWITCH 1
#define LV_USE_TEXTAREA 1 /*Requires: lv_label*/
#if LV_USE_TEXTAREA != 0
#define LV_TEXTAREA_DEF_PWD_SHOW_TIME 1500 /*ms*/
#endif
#define LV_USE_TABLE 1
#define LV_USE_TABVIEW 1 #define LV_USE_TABVIEW 1
#define LV_USE_TILEVIEW 1 #define LV_USE_TILEVIEW 1
#define LV_USE_WIN 1 #define LV_USE_WIN 1
/*----------- /*==================
* Themes * THEMES
*----------*/ *==================*/
/*A simple, impressive and very complete theme*/ /*A simple, impressive and very complete theme*/
#define LV_USE_THEME_DEFAULT 1 #define LV_USE_THEME_DEFAULT 1
@@ -560,9 +556,9 @@
/*A theme designed for monochrome displays*/ /*A theme designed for monochrome displays*/
#define LV_USE_THEME_MONO 1 #define LV_USE_THEME_MONO 1
/*----------- /*==================
* Layouts * LAYOUTS
*----------*/ *==================*/
/*A layout similar to Flexbox in CSS.*/ /*A layout similar to Flexbox in CSS.*/
#define LV_USE_FLEX 1 #define LV_USE_FLEX 1
@@ -570,9 +566,9 @@
/*A layout similar to Grid in CSS.*/ /*A layout similar to Grid in CSS.*/
#define LV_USE_GRID 1 #define LV_USE_GRID 1
/*--------------------- /*====================
* 3rd party libraries * 3RD PARTS LIBRARIES
*--------------------*/ *====================*/
/*File system interfaces for common APIs */ /*File system interfaces for common APIs */
@@ -651,9 +647,9 @@
#define LV_FFMPEG_DUMP_FORMAT 0 #define LV_FFMPEG_DUMP_FORMAT 0
#endif #endif
/*----------- /*==================
* Others * OTHERS
*----------*/ *==================*/
/*1: Enable API to take snapshot for object*/ /*1: Enable API to take snapshot for object*/
#define LV_USE_SNAPSHOT 0 #define LV_USE_SNAPSHOT 0
+1
View File
@@ -26,6 +26,7 @@
--ignore-exclude-errors-x --ignore-exclude-errors-x
--exclude=assets --exclude=assets
--exclude=test_fonts --exclude=test_fonts
--exclude=../src/lv_conf_internal.h
--exclude=../src/core/lv_obj_style_gen.c --exclude=../src/core/lv_obj_style_gen.c
--exclude=../src/core/lv_obj_style_gen.h --exclude=../src/core/lv_obj_style_gen.h
--exclude=../src/extra/libs/gif/gifdec.c --exclude=../src/extra/libs/gif/gifdec.c
+224 -218
View File
File diff suppressed because it is too large Load Diff