updates.txt 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114
  1. R0.09, Sep 6, 2011
  2. f_mkfs() supports multiple partition to finish the multiple partition feature.
  3. Added f_fdisk(). (_MULTI_PARTITION = 2)
  4. R0.08b, Jan 15, 2011
  5. Fast seek feature is also applied to f_read() and f_write().
  6. f_lseek() reports required table size on creating CLMP.
  7. Extended format syntax of f_printf function.
  8. Ignores duplicated directory separators in given path names.
  9. R0.08a, Aug 16, 2010
  10. Added f_getcwd(). (_FS_RPATH = 2)
  11. Added sector erase feature. (_USE_ERASE)
  12. Moved file lock semaphore table from fs object to the bss.
  13. Fixed a wrong directory entry is created on non-LFN cfg when the given name contains ';'.
  14. Fixed f_mkfs() creates wrong FAT32 volume.
  15. R0.08, May 15, 2010
  16. Added a memory configuration option. (_USE_LFN)
  17. Added file lock feature. (_FS_SHARE)
  18. Added fast seek feature. (_USE_FASTSEEK)
  19. Changed some types on the API, XCHAR->TCHAR.
  20. Changed fname member in the FILINFO structure on Unicode cfg.
  21. String functions support UTF-8 encoding files on Unicode cfg.
  22. R0.07e, Nov 3, 2009
  23. Separated out configuration options from ff.h to ffconf.h.
  24. Added a configuration option, _LFN_UNICODE.
  25. Fixed f_unlink() fails to remove a sub-dir on _FS_RPATH.
  26. Fixed name matching error on the 13 char boundary.
  27. Changed f_readdir() to return the SFN with always upper case on non-LFN cfg.
  28. R0.07c, Jun 21, 2009
  29. Fixed f_unlink() may return FR_OK on error.
  30. Fixed wrong cache control in f_lseek().
  31. Added relative path feature.
  32. Added f_chdir().
  33. Added f_chdrive().
  34. Added proper case conversion to extended characters.
  35. R0.07a, Apr 14, 2009
  36. Separated out OS dependent code on re-entrant configuration.
  37. Added multiple sector size support.
  38. R0.07, Apr 01, 2009
  39. Merged Tiny-FatFs into FatFs as a buffer configuration option.
  40. Added long file name support.
  41. Added multiple code page support.
  42. Added re-entrancy for multitask operation.
  43. Added auto cluster size selection to f_mkfs().
  44. Added rewind option to f_readdir().
  45. Changed result code of critical errors.
  46. Renamed string functions to avoid name collision.
  47. R0.06, Apr 01, 2008
  48. Added f_forward. (Tiny-FatFs)
  49. Added string functions: fgets, fputc, fputs and fprintf.
  50. Improved performance of f_lseek on moving to the same or following cluster.
  51. R0.05a, Feb 03, 2008
  52. Added f_truncate.
  53. Added f_utime.
  54. Fixed off by one error at FAT sub-type determination.
  55. Fixed btr in f_read can be mistruncated.
  56. Fixed cached sector is left not flushed when create and close without write.
  57. R0.05, Aug 26, 2007
  58. Changed arguments of f_read, f_write.
  59. Changed arguments of f_mkfs. (FatFs)
  60. Fixed f_mkfs on FAT32 creates incorrect FSInfo. (FatFs)
  61. Fixed f_mkdir on FAT32 creates incorrect directory. (FatFs)
  62. R0.04b, May 05, 2007
  63. Added _USE_NTFLAG option.
  64. Added FSInfo support.
  65. Fixed some problems corresponds to FAT32. (Tiny-FatFs)
  66. Fixed DBCS name can result FR_INVALID_NAME.
  67. Fixed short seek (<= csize) collapses the file object.
  68. R0.04a, Apr 01, 2007
  69. Supported multiple partitions on a plysical drive. (FatFs)
  70. Added minimization level 3.
  71. Added a capability of extending file size to f_lseek.
  72. Fixed an endian sensitive code in f_mkfs. (FatFs)
  73. Fixed a problem corresponds to FAT32 support. (Tiny-FatFs)
  74. R0.04, Feb 04, 2007
  75. Supported multiple drive system. (FatFs)
  76. Changed some APIs for multiple drive system.
  77. Added f_mkfs. (FatFs)
  78. Added _USE_FAT32 option. (Tiny-FatFs)
  79. R0.03a, Dec 11, 2006
  80. Improved cluster scan algolithm to write files fast.
  81. Fixed f_mkdir creates incorrect directory on FAT32.
  82. R0.03, Sep 22, 2006
  83. Added f_rename.
  84. Changed option _FS_MINIMUM to _FS_MINIMIZE.
  85. R0.02a, Jun 10, 2006
  86. Added a configuration option _FS_MINIMUM.
  87. R0.02, Jun 01, 2006
  88. Added FAT12.
  89. Removed unbuffered mode.
  90. Fixed a problem on small (<32M) patition.
  91. R0.01, Apr 29, 2006
  92. First release
  93. R0.00, Feb 26, 2006
  94. Prototype (not released)