• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1menu "Fs Modules Configuration"
2
3config OS_SUPPORT_FS
4	bool "Whether support fs module or not"
5	default n
6
7menu "Fs features configuration"
8	depends on OS_SUPPORT_FS
9
10config OS_SUPPORT_LITTLEFS
11	int "Whether support littlefs module or not"
12	default 1
13
14config OS_LFS_MAX_OPEN_FILES
15	int "Maximum number of file operations supported by the system"
16	default 32
17
18config OS_LFS_MAX_MOUNT_SIZE
19	int
20	default 3
21
22endmenu
23endmenu
24