25 lines
595 B
Plaintext
25 lines
595 B
Plaintext
# Copyright (c) 2019 Peter Bigot Consulting, LLC
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
mainmenu "littlefs sample"
|
|
|
|
config APP_WIPE_STORAGE
|
|
bool "Option to clear the flash area before mounting"
|
|
help
|
|
Use this to force an existing file system to be created.
|
|
|
|
choice
|
|
prompt "Storage backend type used by the application"
|
|
default APP_LITTLEFS_STORAGE_FLASH
|
|
help
|
|
Specify the type of storage backend.
|
|
|
|
config APP_LITTLEFS_STORAGE_FLASH
|
|
bool "Use flash memory backend"
|
|
|
|
config APP_LITTLEFS_STORAGE_BLK_SDMMC
|
|
bool "Use block device (e.g. SD MMC) backend"
|
|
endchoice
|
|
|
|
source "Kconfig.zephyr"
|