• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..--

include/11-Mar-2024-842430

option/11-Mar-2024-15,76515,506

zephyr/11-Mar-2024-32

CMakeLists.txtD11-Mar-2024388 1915

READMED11-Mar-2024915 2721

diskio.cD11-Mar-20245.2 KiB230107

ff.cD11-Mar-2024248 KiB6,9835,621

zfs_diskio.cD11-Mar-20244.7 KiB14880

README

1This implementaion of file system is developed by ELM Chan
2http://elm-chan.org/fsw/ff/00index_e.html.
3
4This is based on FAT file system specification.  It provides
5an interface to physical storage management through its disk io
6API in diskio.c. The disk io interfaces are updated to interface
7with Zephyr flash memory management.
8
9Current revision in the tree is 0.14b
10
11The file system provides options to configure the source. The configurations
12are stored in include/ffconf.h. Following configurations are updated.
13
14FF_CODE_PAGE		437
15FF_FS_TINY		1
16FF_FS_NORTC		1
17FF_STR_VOLUME_ID	1
18
19The following configurations are exposed as kconfig options.
20FF_USE_LFN	as	CONFIG_FS_FATFS_LFN
21FF_MAX_LFN	as	CONFIG_FS_FATFS_MAX_LFN
22FF_CODE_PAGE	as	CONFIG_FS_FATFS_CODEPAGE
23FF_FS_READONLY	as	CONFIG_FS_FATFS_READ_ONLY
24FF_USE_MKFS	as	CONFIG_FS_FATFS_MKFS
25FF_VOLUMES	as	CONFIG_FS_FATFS_VOLUMES
26FF_MAX_SS	as	CONFIG_FS_FATFS_MAX_SS
27