X-Git-Url: http://git.linex4red.de/pub/USBasp.git/blobdiff_plain/071e02c6b6b4837fa9cf0b6d4c749994e02638d7..9e8bf8c0cfba6613d10a90b0ce76bdbbc9a72c8b:/Projects/Webserver/Lib/FATFs/00readme.txt diff --git a/Projects/Webserver/Lib/FATFs/00readme.txt b/Projects/Webserver/Lib/FATFs/00readme.txt index eb378c51e..80d8843d1 100644 --- a/Projects/Webserver/Lib/FATFs/00readme.txt +++ b/Projects/Webserver/Lib/FATFs/00readme.txt @@ -1,4 +1,4 @@ -FatFs Module Source Files R0.07e (C)ChaN, 2010 +FatFs Module Source Files R0.09a (C)ChaN, 2012 FILES @@ -7,8 +7,8 @@ FILES ff.h Common include file for FatFs and application module. ff.c FatFs module. diskio.h Common include file for FatFs and disk I/O module. - diskio.c Skeleton of low level disk I/O module. - integer.h Alternative type definitions for integer variables. + diskio.c An example of glue function to attach existing disk I/O module to FatFs. + integer.h Integer type definitions for FatFs. option Optional external functions. Low level disk I/O module is not included in this archive because the FatFs @@ -24,7 +24,7 @@ AGREEMENTS small embedded systems. This is a free software and is opened for education, research and commercial developments under license policy of following trems. - Copyright (C) 2010, ChaN, all right reserved. + Copyright (C) 2012, ChaN, all right reserved. * The FatFs module is a free software and there is NO WARRANTY. * No restriction on use. You can use, modify and redistribute it for @@ -84,7 +84,7 @@ REVISION HISTORY Added string functions: fputc(), fputs(), fprintf() and fgets(). Improved performance of f_lseek() on move to the same or following cluster. - Apr 01, 2010, R0.07 Merged Tiny-FatFs as a buffer configuration option. + Apr 01, 2009, R0.07 Merged Tiny-FatFs as a buffer configuration option. Added long file name support. Added multiple code page support. Added re-entrancy for multitask operation. @@ -93,18 +93,43 @@ REVISION HISTORY Changed result code of critical errors. Renamed string functions to avoid name collision. - Apr 14, 2010, R0.07a Separated out OS dependent code on reentrant cfg. + Apr 14, 2009, R0.07a Separated out OS dependent code on reentrant cfg. Added multiple sector size support. - Jun 21, 2010, R0.07c Fixed f_unlink() may return FR_OK on error. + Jun 21, 2009, R0.07c Fixed f_unlink() may return FR_OK on error. Fixed wrong cache control in f_lseek(). Added relative path feature. Added f_chdir(). Added f_chdrive(). Added proper case conversion for extended characters. - Nov 03,'2010 R0.07e Separated out configuration options from ff.h to ffconf.h. + Nov 03, 2009 R0.07e Separated out configuration options from ff.h to ffconf.h. Added a configuration option, _LFN_UNICODE. Fixed f_unlink() fails to remove a sub-dir on _FS_RPATH. Fixed name matching error on the 13 char boundary. Changed f_readdir() to return the SFN with always upper case on non-LFN cfg. + + May 15, 2010, R0.08 Added a memory configuration option. (_USE_LFN) + Added file lock feature. (_FS_SHARE) + Added fast seek feature. (_USE_FASTSEEK) + Changed some types on the API, XCHAR->TCHAR. + Changed fname member in the FILINFO structure on Unicode cfg. + String functions support UTF-8 encoding files on Unicode cfg. + + Aug 16,'10 R0.08a Added f_getcwd(). (_FS_RPATH = 2) + Added sector erase feature. (_USE_ERASE) + Moved file lock semaphore table from fs object to the bss. + Fixed a wrong directory entry is created on non-LFN cfg when the given name contains ';'. + Fixed f_mkfs() creates wrong FAT32 volume. + + Jan 15,'11 R0.08b Fast seek feature is also applied to f_read() and f_write(). + f_lseek() reports required table size on creating CLMP. + Extended format syntax of f_printf function. + Ignores duplicated directory separators in given path names. + + Sep 06,'11 R0.09 f_mkfs() supports multiple partition to finish the multiple partition feature. + Added f_fdisk(). (_MULTI_PARTITION = 2) + + Aug 27,'12 R0.09a Fixed assertion failure due to OS/2 EA on FAT12/16. + Changed API rejects null object pointer to avoid crash. + Changed option name _FS_SHARE to _FS_LOCK.