@@ -389,7 +389,7 @@ extern void mp_lv_init_gc();
389
389
#define LV_FONT_MONTSERRAT_18 0
390
390
#define LV_FONT_MONTSERRAT_20 0
391
391
#define LV_FONT_MONTSERRAT_22 0
392
- #define LV_FONT_MONTSERRAT_24 1
392
+ #define LV_FONT_MONTSERRAT_24 0
393
393
#define LV_FONT_MONTSERRAT_26 0
394
394
#define LV_FONT_MONTSERRAT_28 0
395
395
#define LV_FONT_MONTSERRAT_30 0
@@ -587,10 +587,10 @@ extern void mp_lv_init_gc();
587
587
#endif /*LV_USE_THEME_DEFAULT*/
588
588
589
589
/*A very simple theme that is a good starting point for a custom theme*/
590
- #define LV_USE_THEME_SIMPLE 1
590
+ #define LV_USE_THEME_SIMPLE 0
591
591
592
592
/*A theme designed for monochrome displays*/
593
- #define LV_USE_THEME_MONO 1
593
+ #define LV_USE_THEME_MONO 0
594
594
595
595
/*==================
596
596
* LAYOUTS
@@ -811,7 +811,9 @@ extern void mp_lv_init_gc();
811
811
#define LV_USE_MONKEY 0
812
812
813
813
/*1: Enable grid navigation*/
814
- #define LV_USE_GRIDNAV 1
814
+ #ifndef LV_USE_GRIDNAV
815
+ #define LV_USE_GRIDNAV 0
816
+ #endif
815
817
816
818
/*1: Enable lv_obj fragment*/
817
819
#define LV_USE_FRAGMENT 0
@@ -824,7 +826,9 @@ extern void mp_lv_init_gc();
824
826
825
827
/*1: Enable Pinyin input method*/
826
828
/*Requires: lv_keyboard*/
827
- #define LV_USE_IME_PINYIN 1
829
+ #ifndef LV_USE_IME_PINYIN
830
+ #define LV_USE_IME_PINYIN 0
831
+ #endif
828
832
#if LV_USE_IME_PINYIN
829
833
/*1: Use default thesaurus*/
830
834
/*If you do not use the default thesaurus, be sure to use `lv_ime_pinyin` after setting the thesauruss*/
@@ -842,13 +846,15 @@ extern void mp_lv_init_gc();
842
846
843
847
/*1: Enable file explorer*/
844
848
/*Requires: lv_table*/
845
- #define LV_USE_FILE_EXPLORER 1
849
+ #ifndef LV_USE_FILE_EXPLORER
850
+ #define LV_USE_FILE_EXPLORER 0
851
+ #endif
846
852
#if LV_USE_FILE_EXPLORER
847
853
/*Maximum length of path*/
848
- #define LV_FILE_EXPLORER_PATH_MAX_LEN (128)
854
+ #define LV_FILE_EXPLORER_PATH_MAX_LEN (128)
849
855
/*Quick access bar, 1:use, 0:not use*/
850
856
/*Requires: lv_list*/
851
- #define LV_FILE_EXPLORER_QUICK_ACCESS 1
857
+ #define LV_FILE_EXPLORER_QUICK_ACCESS 1
852
858
#endif
853
859
854
860
/*==================
@@ -938,7 +944,9 @@ extern void mp_lv_init_gc();
938
944
*==================*/
939
945
940
946
/*Enable the examples to be built with the library*/
941
- #define LV_BUILD_EXAMPLES 1
947
+ #ifndef LV_BUILD_EXAMPLES
948
+ #define LV_BUILD_EXAMPLES 0
949
+ #endif
942
950
943
951
/*===================
944
952
* DEMO USAGE
0 commit comments