1 /*---------------------------------------------------------------------------/
2 / FatFs - FAT file system module configuration file R0.10a (C)ChaN, 2014
3 /---------------------------------------------------------------------------*/
6 #define _FFCONF 29000 /* Revision ID */
9 /*---------------------------------------------------------------------------/
10 / Functions and Buffer Configurations
11 /---------------------------------------------------------------------------*/
13 #define _FS_TINY 0 /* 0:Normal or 1:Tiny */
14 /* When _FS_TINY is set to 1, it reduces memory consumption _MAX_SS bytes each
15 / file object. For file data transfer, FatFs uses the common sector buffer in
16 / the file system object (FATFS) instead of private sector buffer eliminated
17 / from the file object (FIL). */
20 #define _FS_READONLY 1 /* 0:Read/Write or 1:Read only */
21 /* Setting _FS_READONLY to 1 defines read only configuration. This removes
22 / writing functions, f_write(), f_sync(), f_unlink(), f_mkdir(), f_chmod(),
23 / f_rename(), f_truncate() and useless f_getfree(). */
26 #define _FS_MINIMIZE 3 /* 0 to 3 */
27 /* The _FS_MINIMIZE option defines minimization level to remove API functions.
29 / 0: All basic functions are enabled.
30 / 1: f_stat(), f_getfree(), f_unlink(), f_mkdir(), f_chmod(), f_utime(),
31 / f_truncate() and f_rename() function are removed.
32 / 2: f_opendir(), f_readdir() and f_closedir() are removed in addition to 1.
33 / 3: f_lseek() function is removed in addition to 2. */
36 #define _USE_STRFUNC 0 /* 0:Disable or 1-2:Enable */
37 /* To enable string functions, set _USE_STRFUNC to 1 or 2. */
40 #define _USE_MKFS 0 /* 0:Disable or 1:Enable */
41 /* To enable f_mkfs() function, set _USE_MKFS to 1 and set _FS_READONLY to 0 */
44 #define _USE_FASTSEEK 0 /* 0:Disable or 1:Enable */
45 /* To enable fast seek feature, set _USE_FASTSEEK to 1. */
48 #define _USE_LABEL 0 /* 0:Disable or 1:Enable */
49 /* To enable volume label functions, set _USE_LAVEL to 1 */
52 #define _USE_FORWARD 0 /* 0:Disable or 1:Enable */
53 /* To enable f_forward() function, set _USE_FORWARD to 1 and set _FS_TINY to 1. */
56 /*---------------------------------------------------------------------------/
57 / Locale and Namespace Configurations
58 /---------------------------------------------------------------------------*/
60 #define _CODE_PAGE 932
61 /* The _CODE_PAGE specifies the OEM code page to be used on the target system.
62 / Incorrect setting of the code page can cause a file open failure.
64 / 932 - Japanese Shift-JIS (DBCS, OEM, Windows)
65 / 936 - Simplified Chinese GBK (DBCS, OEM, Windows)
66 / 949 - Korean (DBCS, OEM, Windows)
67 / 950 - Traditional Chinese Big5 (DBCS, OEM, Windows)
68 / 1250 - Central Europe (Windows)
69 / 1251 - Cyrillic (Windows)
70 / 1252 - Latin 1 (Windows)
71 / 1253 - Greek (Windows)
72 / 1254 - Turkish (Windows)
73 / 1255 - Hebrew (Windows)
74 / 1256 - Arabic (Windows)
75 / 1257 - Baltic (Windows)
76 / 1258 - Vietnam (OEM, Windows)
81 / 850 - Multilingual Latin 1 (OEM)
82 / 858 - Multilingual Latin 1 + Euro (OEM)
84 / 855 - Cyrillic (OEM)
88 / 874 - Thai (OEM, Windows)
89 / 1 - ASCII (Valid for only non-LFN cfg.) */
92 #define _USE_LFN 0 /* 0 to 3 */
93 #define _MAX_LFN 255 /* Maximum LFN length to handle (12 to 255) */
94 /* The _USE_LFN option switches the LFN feature.
96 / 0: Disable LFN feature. _MAX_LFN and _LFN_UNICODE have no effect.
97 / 1: Enable LFN with static working buffer on the BSS. Always NOT thread-safe.
98 / 2: Enable LFN with dynamic working buffer on the STACK.
99 / 3: Enable LFN with dynamic working buffer on the HEAP.
101 / When enable LFN feature, Unicode handling functions ff_convert() and ff_wtoupper()
102 / function must be added to the project.
103 / The LFN working buffer occupies (_MAX_LFN + 1) * 2 bytes. When use stack for the
104 / working buffer, take care on stack overflow. When use heap memory for the working
105 / buffer, memory management functions, ff_memalloc() and ff_memfree(), must be added
109 #define _LFN_UNICODE 0 /* 0:ANSI/OEM or 1:Unicode */
110 /* To switch the character encoding on the FatFs API (TCHAR) to Unicode, enable LFN
111 / feature and set _LFN_UNICODE to 1. This option affects behavior of string I/O
115 #define _STRF_ENCODE 3 /* 0:ANSI/OEM, 1:UTF-16LE, 2:UTF-16BE, 3:UTF-8 */
116 /* When Unicode API is enabled by _LFN_UNICODE option, this option selects the character
117 / encoding on the file to be read/written via string I/O functions, f_gets(), f_putc(),
118 / f_puts and f_printf(). This option has no effect when Unicode API is not enabled. */
121 #define _FS_RPATH 0 /* 0 to 2 */
122 /* The _FS_RPATH option configures relative path feature.
124 / 0: Disable relative path feature and remove related functions.
125 / 1: Enable relative path. f_chdrive() and f_chdir() function are available.
126 / 2: f_getcwd() function is available in addition to 1.
128 / Note that output of the f_readdir() fnction is affected by this option. */
131 /*---------------------------------------------------------------------------/
132 / Drive/Volume Configurations
133 /---------------------------------------------------------------------------*/
136 /* Number of volumes (logical drives) to be used. */
139 #define _STR_VOLUME_ID 0 /* 0:Use only 0-9 for drive ID, 1:Use strings for drive ID */
140 #define _VOLUME_STRS "RAM","NAND","CF","SD1","SD2","USB1","USB2","USB3"
141 /* When _STR_VOLUME_ID is set to 1, also pre-defined string can be used as drive number
142 / in the path name. _VOLUME_STRS defines the drive ID strings for each logical drives.
143 / Number of items must be equal to _VOLUMES. Valid characters for the drive ID strings
144 / are: 0-9 and A-Z. */
147 // The program is compatible with single partition. If you want to enable multiple partition,
148 // then there will be changes required in the diskio.c for multiple partition.
149 // For more info read the comments below the macro. In addition you can refer to FATfs website for help.
151 #define _MULTI_PARTITION 0 /* 0:Single partition, 1:Enable multiple partition */
152 /* By default(0), each logical drive number is bound to the same physical drive number
153 / and only a FAT volume found on the physical drive is mounted. When it is set to 1,
154 / each logical drive number is bound to arbitrary drive/partition listed in VolToPart[].
160 /* These options configure the sector size to be supported. (512, 1024, 2048 or 4096)
161 / Always set both 512 for most systems, all memory card and hard disk. But a larger
162 / value may be required for on-board flash memory and some type of optical media.
163 / When _MIN_SS != _MAX_SS, FatFs is configured to multiple sector size and
164 / GET_SECTOR_SIZE command must be implemented to the disk_ioctl() function. */
167 #define _USE_ERASE 0 /* 0:Disable or 1:Enable */
168 /* To enable sector erase feature, set _USE_ERASE to 1. Also CTRL_ERASE_SECTOR command
169 / should be added to the disk_ioctl() function. */
172 #define _FS_NOFSINFO 0 /* 0 to 3 */
173 /* If you need to know correct free space on the FAT32 volume, set bit 0 of this
174 / option and f_getfree() function at first time after volume mount will force
175 / a full FAT scan. Bit 1 controls the last allocated cluster number as bit 0.
177 / bit0=0: Use free cluster count in the FSINFO if available.
178 / bit0=1: Do not trust free cluster count in the FSINFO.
179 / bit1=0: Use last allocated cluster number in the FSINFO if available.
180 / bit1=1: Do not trust last allocated cluster number in the FSINFO.
185 /*---------------------------------------------------------------------------/
186 / System Configurations
187 /---------------------------------------------------------------------------*/
189 #define _WORD_ACCESS 0 /* 0 or 1 */
190 /* The _WORD_ACCESS option is an only platform dependent option. It defines
191 / which access method is used to the word data on the FAT volume.
193 / 0: Byte-by-byte access. Always compatible with all platforms.
194 / 1: Word access. Do not choose this unless under both the following conditions.
196 / * Address misaligned memory access is always allowed for all instructions.
197 / * Byte order on the memory is little-endian.
199 / If it is the case, _WORD_ACCESS can also be set to 1 to improve performance
200 / and reduce code size.
204 #define _FS_LOCK 0 /* 0:Disable or >=1:Enable */
205 /* To enable file lock control feature, set _FS_LOCK to 1 or greater.
206 / The value defines how many files/sub-directories can be opened simultaneously.
207 / This feature consumes _FS_LOCK * 12 bytes of bss area. */
210 #define _FS_REENTRANT 0 /* 0:Disable or 1:Enable */
211 #define _FS_TIMEOUT 1000 /* Timeout period in unit of time ticks */
212 #define _SYNC_t HANDLE /* O/S dependent sync object type. e.g. HANDLE, OS_EVENT*, ID and etc.. */
213 /*#include <windows.h>*/
215 /* A header file that defines sync object types on the O/S, such as windows.h,
216 / ucos_ii.h and semphr.h, should be included here when enable this option.
217 / The _FS_REENTRANT option switches the re-entrancy (thread safe) of the FatFs module.
219 / 0: Disable re-entrancy. _FS_TIMEOUT and _SYNC_t have no effect.
220 / 1: Enable re-entrancy. Also user provided synchronization handlers,
221 / ff_req_grant(), ff_rel_grant(), ff_del_syncobj() and ff_cre_syncobj()
222 / function must be added to the project.
226 #endif /* _FFCONFIG */