FreeRTOS
[armadillo_firmware.git] / FreeRTOS / Common / FileSystem / FatFs-0.7e / src / 00readme.txt
blobc46a0fa1aa40bae5d920c659ae9481f47972af3a
1 FatFs Module Source Files R0.07e                        (C)ChaN, 2009\r
2 \r
3 \r
4 FILES\r
5 \r
6   ffconf.h   Configuration file for FatFs module.\r
7   ff.h       Common include file for FatFs and application module.\r
8   ff.c       FatFs module.\r
9   diskio.h   Common include file for FatFs and disk I/O module.\r
10   diskio.c   Skeleton of low level disk I/O module.\r
11   integer.h  Alternative type definitions for integer variables.\r
12   option     Optional external functions.\r
14   Low level disk I/O module is not included in this archive because the FatFs\r
15   module is only a generic file system layer and not depend on any specific\r
16   storage device. You have to provide a low level disk I/O module that written\r
17   to control your storage device.\r
21 AGREEMENTS\r
23  FatFs module is an open source software to implement FAT file system to\r
24  small embedded systems. This is a free software and is opened for education,\r
25  research and commercial developments under license policy of following trems.\r
27   Copyright (C) 2009, ChaN, all right reserved.\r
29  * The FatFs module is a free software and there is NO WARRANTY.\r
30  * No restriction on use. You can use, modify and redistribute it for\r
31    personal, non-profit or commercial product UNDER YOUR RESPONSIBILITY.\r
32  * Redistributions of source code must retain the above copyright notice.\r
36 REVISION HISTORY\r
38   Feb 26, 2006  R0.00  Prototype\r
40   Apr 29, 2006  R0.01  First release.\r
42   Jun 01, 2006  R0.02  Added FAT12.\r
43                        Removed unbuffered mode.\r
44                        Fixed a problem on small (<32M) patition.\r
46   Jun 10, 2006  R0.02a Added a configuration option _FS_MINIMUM.\r
48   Sep 22, 2006  R0.03  Added f_rename.\r
49                        Changed option _FS_MINIMUM to _FS_MINIMIZE.\r
51   Dec 11, 2006  R0.03a Improved cluster scan algolithm to write files fast.\r
52                        Fixed f_mkdir creates incorrect directory on FAT32.\r
54   Feb 04, 2007  R0.04  Supported multiple drive system. (FatFs)\r
55                        Changed some APIs for multiple drive system.\r
56                        Added f_mkfs. (FatFs)\r
57                        Added _USE_FAT32 option. (Tiny-FatFs)\r
59   Apr 01, 2007  R0.04a Supported multiple partitions on a plysical drive. (FatFs)\r
60                        Fixed an endian sensitive code in f_mkfs. (FatFs)\r
61                        Added a capability of extending the file size to f_lseek.\r
62                        Added minimization level 3.\r
63                        Fixed a problem that can collapse a sector when recreate an\r
64                        existing file in any sub-directory at non FAT32 cfg. (Tiny-FatFs)\r
66   May 05, 2007  R0.04b Added _USE_NTFLAG option.\r
67                        Added FSInfo support.\r
68                        Fixed some problems corresponds to FAT32. (Tiny-FatFs)\r
69                        Fixed DBCS name can result FR_INVALID_NAME.\r
70                        Fixed short seek (0 < ofs <= csize) collapses the file object.\r
72   Aug 25, 2007  R0.05  Changed arguments of f_read, f_write.\r
73                        Changed arguments of f_mkfs. (FatFs)\r
74                        Fixed f_mkfs on FAT32 creates incorrect FSInfo. (FatFs)\r
75                        Fixed f_mkdir on FAT32 creates incorrect directory. (FatFs)\r
77   Feb 03, 2008  R0.05a Added f_truncate().\r
78                        Added f_utime().\r
79                        Fixed off by one error at FAT sub-type determination.\r
80                        Fixed btr in f_read() can be mistruncated.\r
81                        Fixed cached sector is not flushed when create and close without write.\r
83   Apr 01, 2008  R0.06  Added f_forward(). (Tiny-FatFs)\r
84                        Added string functions: fputc(), fputs(), fprintf() and fgets().\r
85                        Improved performance of f_lseek() on move to the same or following cluster.\r
87   Apr 01, 2009, R0.07  Merged Tiny-FatFs as a buffer configuration option.\r
88                        Added long file name support.\r
89                        Added multiple code page support.\r
90                        Added re-entrancy for multitask operation.\r
91                        Added auto cluster size selection to f_mkfs().\r
92                        Added rewind option to f_readdir().\r
93                        Changed result code of critical errors.\r
94                        Renamed string functions to avoid name collision.\r
96   Apr 14, 2009, R0.07a Separated out OS dependent code on reentrant cfg.\r
97                        Added multiple sector size support.\r
99   Jun 21, 2009, R0.07c Fixed f_unlink() may return FR_OK on error.\r
100                        Fixed wrong cache control in f_lseek().\r
101                        Added relative path feature.\r
102                        Added f_chdir().\r
103                        Added f_chdrive().\r
104                        Added proper case conversion for extended characters.\r
106   Nov 03,'2009 R0.07e  Separated out configuration options from ff.h to ffconf.h.\r
107                        Added a configuration option, _LFN_UNICODE.\r
108                        Fixed f_unlink() fails to remove a sub-dir on _FS_RPATH.\r
109                        Fixed name matching error on the 13 char boundary.\r
110                        Changed f_readdir() to return the SFN with always upper case on non-LFN cfg.\r