1
0
mirror of https://github.com/lvgl/lvgl.git synced 2025-02-04 07:13:00 +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:
Amir Gonnen 2022-01-28 12:33:17 +02:00 committed by GitHub
parent 285e6b39f9
commit a4c235a93e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -884,33 +884,39 @@ menu "LVGL configuration"
bool "File system on top of posix API" bool "File system on top of posix API"
config LV_FS_POSIX_LETTER config LV_FS_POSIX_LETTER
int "Set an upper cased letter on which the drive will accessible (e.g. 'A' i.e. 65)" 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 depends on LV_USE_FS_POSIX != 0
config LV_FS_POSIX_PATH config LV_FS_POSIX_PATH
string "Set the working directory" string "Set the working directory"
depends on LV_USE_FS_POSIX != 0 depends on LV_USE_FS_POSIX != 0
config LV_FS_POSIX_CACHE_SIZE config LV_FS_POSIX_CACHE_SIZE
int ">0 to cache this number of bytes in lv_fs_read()" int ">0 to cache this number of bytes in lv_fs_read()"
default 0
depends on LV_USE_FS_POSIX != 0 depends on LV_USE_FS_POSIX != 0
config LV_USE_FS_WIN32 config LV_USE_FS_WIN32
bool "File system on top of Win32 API" bool "File system on top of Win32 API"
config LV_FS_WIN32_LETTER config LV_FS_WIN32_LETTER
int "Set an upper cased letter on which the drive will accessible (e.g. 'A' i.e. 65)" 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 depends on LV_USE_FS_WIN32 != 0
config LV_FS_WIN32_PATH config LV_FS_WIN32_PATH
string "Set the working directory" string "Set the working directory"
depends on LV_USE_FS_WIN32 != 0 depends on LV_USE_FS_WIN32 != 0
config LV_FS_WIN32_CACHE_SIZE config LV_FS_WIN32_CACHE_SIZE
int ">0 to cache this number of bytes in lv_fs_read()" int ">0 to cache this number of bytes in lv_fs_read()"
default 0
depends on LV_USE_FS_WIN32 != 0 depends on LV_USE_FS_WIN32 != 0
config LV_USE_FS_FATFS config LV_USE_FS_FATFS
bool "File system on top of FatFS" bool "File system on top of FatFS"
config LV_FS_FATFS_LETTER config LV_FS_FATFS_LETTER
int "Set an upper cased letter on which the drive will accessible (e.g. 'A' i.e. 65)" 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 depends on LV_USE_FS_FATFS != 0
config LV_FS_FATFS_CACHE_SIZE config LV_FS_FATFS_CACHE_SIZE
int ">0 to cache this number of bytes in lv_fs_read()" int ">0 to cache this number of bytes in lv_fs_read()"
default 0
depends on LV_USE_FS_FATFS != 0 depends on LV_USE_FS_FATFS != 0
config LV_USE_PNG config LV_USE_PNG