mirror of
https://github.com/lvgl/lvgl.git
synced 2025-01-14 06:42:58 +08:00
fix(kconfig): add missing default values (#3050)
Related: https://github.com/lvgl/lv_micropython/runs/4958046580?check_suite_focus=true
This commit is contained in:
parent
285e6b39f9
commit
a4c235a93e
6
Kconfig
6
Kconfig
@ -884,33 +884,39 @@ menu "LVGL configuration"
|
||||
bool "File system on top of posix API"
|
||||
config LV_FS_POSIX_LETTER
|
||||
int "Set an upper cased letter on which the drive will accessible (e.g. 'A' i.e. 65)"
|
||||
default 0
|
||||
depends on LV_USE_FS_POSIX != 0
|
||||
config LV_FS_POSIX_PATH
|
||||
string "Set the working directory"
|
||||
depends on LV_USE_FS_POSIX != 0
|
||||
config LV_FS_POSIX_CACHE_SIZE
|
||||
int ">0 to cache this number of bytes in lv_fs_read()"
|
||||
default 0
|
||||
depends on LV_USE_FS_POSIX != 0
|
||||
|
||||
config LV_USE_FS_WIN32
|
||||
bool "File system on top of Win32 API"
|
||||
config LV_FS_WIN32_LETTER
|
||||
int "Set an upper cased letter on which the drive will accessible (e.g. 'A' i.e. 65)"
|
||||
default 0
|
||||
depends on LV_USE_FS_WIN32 != 0
|
||||
config LV_FS_WIN32_PATH
|
||||
string "Set the working directory"
|
||||
depends on LV_USE_FS_WIN32 != 0
|
||||
config LV_FS_WIN32_CACHE_SIZE
|
||||
int ">0 to cache this number of bytes in lv_fs_read()"
|
||||
default 0
|
||||
depends on LV_USE_FS_WIN32 != 0
|
||||
|
||||
config LV_USE_FS_FATFS
|
||||
bool "File system on top of FatFS"
|
||||
config LV_FS_FATFS_LETTER
|
||||
int "Set an upper cased letter on which the drive will accessible (e.g. 'A' i.e. 65)"
|
||||
default 0
|
||||
depends on LV_USE_FS_FATFS != 0
|
||||
config LV_FS_FATFS_CACHE_SIZE
|
||||
int ">0 to cache this number of bytes in lv_fs_read()"
|
||||
default 0
|
||||
depends on LV_USE_FS_FATFS != 0
|
||||
|
||||
config LV_USE_PNG
|
||||
|
Loading…
x
Reference in New Issue
Block a user