This commit is contained in:
刘可亮
2024-01-27 08:47:24 +08:00
parent d3bd993b5f
commit 9f7ba67007
2345 changed files with 74421 additions and 76616 deletions

View File

@@ -43,6 +43,11 @@ config AIC_FATFS_SECTOR_COUNT_FOR_0
int "sector count"
depends on !AIC_FATFS_AUTO_SIZE_FOR_0
default 2048
config AIC_FATFS_ENABLE_WRITE_IN_SPINOR
bool "FATFS enable write func in spinor"
depends on AIC_SPINOR_DRV
default n
endif
# Parameters for LittleFS
@@ -114,8 +119,49 @@ if AIC_USING_FS_IMAGE_TYPE_FATFS_FOR_0 || AIC_USING_FS_IMAGE_TYPE_FATFS_FOR_1
default 8
endif
config GENERATE_BURNER_IMAGE
bool "Generate burner format image"
default n
comment "LVGL demo select related"
# Kconfig file for package LVGL
menuconfig LPKG_USING_LVGL
bool "LVGL (official): powerful and easy-to-use embedded GUI library"
default n
if LPKG_USING_LVGL
config LPKG_LVGL_PATH
string
default "/packages/multimedia/LVGL/LVGL"
config LPKG_LVGL_THREAD_PRIO
int "Priority of LVGL thread"
default 20
config LPKG_LVGL_THREAD_STACK_SIZE
int "Stack size of LVGL thread"
default 4096
config LPKG_LVGL_DISP_REFR_PERIOD
int "Display refresh period (ms)"
default 5 # official suggestion
config LPKG_USING_LVGL_SQUARELINE
bool "Support SquareLine Studio"
default n
config LPKG_LVGL_USING_EXAMPLES
bool "Enable built-in examples"
default n
config LPKG_LVGL_USING_DEMOS
bool "Enable built-in demos"
default n
endif
menuconfig AIC_LVGL_DEMO
tristate "ArtInChip LVGL demo"
select LPKG_USING_LVGL
@@ -133,9 +179,14 @@ config AIC_LVGL_BASE_DEMO
config AIC_LVGL_METER_DEMO
bool "LVGL demo of meter"
config AIC_LVGL_MUSIC_DEMO
bool "LVGL music demo"
select LPKG_USING_LV_MUSIC_DEMO
config AIC_LVGL_LAUNCHER_DEMO
bool "LVGL launcher demo"
if KERNEL_BAREMETAL
config AIC_LVGL_GIF_DEMO
bool "LVGL gif demo"
endif
endchoice
config LV_COLOR_DEPTH
@@ -146,11 +197,16 @@ config LV_CACHE_IMG_NUM
int "LVGL image cached number"
default 2
depends on LPKG_USING_LVGL
# Parameters for LVGL meter demo
if AIC_LVGL_METER_DEMO
config LV_METER_SIMPLE_POINT
bool "LVGL meter demo use simple point"
default n
endif
endif
config LVGL_STORAGE_PATH
string "LVGL Resource Directory"
default "/rodata/lvgl_data"
endmenu