Added class specific descriptor type defines with standard USB-IF element naming.
[pub/USBasp.git] / Projects / Webserver / Lib / FATFs / 00readme.txt
index eb378c5..a34c951 100644 (file)
@@ -1,4 +1,4 @@
-FatFs Module Source Files R0.07e                        (C)ChaN, 2010
+FatFs Module Source Files R0.08                        (C)ChaN, 2010
 
 
 FILES
 
 
 FILES
@@ -41,14 +41,14 @@ REVISION HISTORY
 
   Jun 01, 2006  R0.02  Added FAT12.
                        Removed unbuffered mode.
 
   Jun 01, 2006  R0.02  Added FAT12.
                        Removed unbuffered mode.
-                       Fixed a problem on small (<32M) patition.
+                       Fixed a problem on small (<32M) partition.
 
   Jun 10, 2006  R0.02a Added a configuration option _FS_MINIMUM.
 
   Sep 22, 2006  R0.03  Added f_rename.
                        Changed option _FS_MINIMUM to _FS_MINIMIZE.
 
 
   Jun 10, 2006  R0.02a Added a configuration option _FS_MINIMUM.
 
   Sep 22, 2006  R0.03  Added f_rename.
                        Changed option _FS_MINIMUM to _FS_MINIMIZE.
 
-  Dec 11, 2006  R0.03a Improved cluster scan algolithm to write files fast.
+  Dec 11, 2006  R0.03a Improved cluster scan algorithm to write files fast.
                        Fixed f_mkdir creates incorrect directory on FAT32.
 
   Feb 04, 2007  R0.04  Supported multiple drive system. (FatFs)
                        Fixed f_mkdir creates incorrect directory on FAT32.
 
   Feb 04, 2007  R0.04  Supported multiple drive system. (FatFs)
@@ -56,7 +56,7 @@ REVISION HISTORY
                        Added f_mkfs. (FatFs)
                        Added _USE_FAT32 option. (Tiny-FatFs)
 
                        Added f_mkfs. (FatFs)
                        Added _USE_FAT32 option. (Tiny-FatFs)
 
-  Apr 01, 2007  R0.04a Supported multiple partitions on a plysical drive. (FatFs)
+  Apr 01, 2007  R0.04a Supported multiple partitions on a physical drive. (FatFs)
                        Fixed an endian sensitive code in f_mkfs. (FatFs)
                        Added a capability of extending the file size to f_lseek.
                        Added minimization level 3.
                        Fixed an endian sensitive code in f_mkfs. (FatFs)
                        Added a capability of extending the file size to f_lseek.
                        Added minimization level 3.
@@ -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.
 
                        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.
                        Added long file name support.
                        Added multiple code page support.
                        Added re-entrancy for multitask operation.
@@ -93,18 +93,25 @@ REVISION HISTORY
                        Changed result code of critical errors.
                        Renamed string functions to avoid name collision.
 
                        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.
 
                        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.
 
                        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.
                        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.