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