/*---------------------------------------------------------------------------/
-/ FatFs - FAT file system module configuration file R0.08b (C)ChaN, 2011
+/ FatFs - FAT file system module configuration file R0.09a (C)ChaN, 2012
/----------------------------------------------------------------------------/
/
/ CAUTION! Do not forget to make clean the project after any changes to
/
/----------------------------------------------------------------------------*/
#ifndef _FFCONF
-#define _FFCONF 8237 /* Revision ID */
+#define _FFCONF 4004 /* Revision ID */
/*---------------------------------------------------------------------------/
/ 3: f_lseek is removed in addition to 2. */
-#define _USE_STRFUNC 0 /* 0:Disable or 1/2:Enable */
+#define _USE_STRFUNC 0 /* 0:Disable or 1-2:Enable */
/* To enable string functions, set _USE_STRFUNC to 1 or 2. */
/ 1: Enable relative path. f_chdrive() and f_chdir() are available.
/ 2: f_getcwd() is available in addition to 1.
/
-/ Note that output of the f_readdir fnction is affected by this option. */
+/ Note that output of the f_readdir function is affected by this option. */
/ Always set 512 for memory card and hard disk but a larger value may be
/ required for on-board flash memory, floppy disk and optical disk.
/ When _MAX_SS is larger than 512, it configures FatFs to variable sector size
-/ and GET_SECTOR_SIZE command must be implememted to the disk_ioctl function. */
+/ and GET_SECTOR_SIZE command must be implemented to the disk_ioctl function. */
-#define _MULTI_PARTITION 0 /* 0:Single partition or 1:Multiple partition */
+#define _MULTI_PARTITION 0 /* 0:Single partition, 1/2:Enable multiple partition */
/* When set to 0, each volume is bound to the same physical drive number and
-/ it can mount only first primaly partition. When it is set to 1, each volume
+/ it can mount only first primary partition. When it is set to 1, each volume
/ is tied to the partitions listed in VolToPart[]. */
#define _USE_ERASE 0 /* 0:Disable or 1:Enable */
/* To enable sector erase feature, set _USE_ERASE to 1. CTRL_ERASE_SECTOR command
-/ should be added to the disk_ioctl functio. */
+/ should be added to the disk_ioctl function. */
/ function must be added to the project. */
-#define _FS_SHARE 0 /* 0:Disable or >=1:Enable */
-/* To enable file shareing feature, set _FS_SHARE to 1 or greater. The value
- defines how many files can be opened simultaneously. */
+#define _FS_LOCK 0 /* 0:Disable or >=1:Enable */
+/* To enable file lock control feature, set _FS_LOCK to 1 or greater.
+ The value defines how many files can be opened simultaneously. */
#endif /* _FFCONFIG */