APM:Libraries
ffconf.h
Go to the documentation of this file.
1 #pragma once
2 
3 /* CHIBIOS FIX */
4 #include "ch.h"
5 
6 /*---------------------------------------------------------------------------/
7 / FatFs - FAT file system module configuration file
8 /---------------------------------------------------------------------------*/
9 
10 #define _FFCONF 68020 /* Revision ID */
11 
12 /*---------------------------------------------------------------------------/
13 / Function Configurations
14 /---------------------------------------------------------------------------*/
15 
16 #define _FS_READONLY 0
17 /* This option switches read-only configuration. (0:Read/Write or 1:Read-only)
18 / Read-only configuration removes writing API functions, f_write(), f_sync(),
19 / f_unlink(), f_mkdir(), f_chmod(), f_rename(), f_truncate(), f_getfree()
20 / and optional writing functions as well. */
21 
22 
23 #define _FS_MINIMIZE 0
24 /* This option defines minimization level to remove some basic API functions.
25 /
26 / 0: All basic functions are enabled.
27 / 1: f_stat(), f_getfree(), f_unlink(), f_mkdir(), f_truncate() and f_rename()
28 / are removed.
29 / 2: f_opendir(), f_readdir() and f_closedir() are removed in addition to 1.
30 / 3: f_lseek() function is removed in addition to 2. */
31 
32 
33 #define _USE_STRFUNC 0
34 /* This option switches string functions, f_gets(), f_putc(), f_puts() and
35 / f_printf().
36 /
37 / 0: Disable string functions.
38 / 1: Enable without LF-CRLF conversion.
39 / 2: Enable with LF-CRLF conversion. */
40 
41 
42 #define _USE_FIND 0
43 /* This option switches filtered directory read functions, f_findfirst() and
44 / f_findnext(). (0:Disable, 1:Enable 2:Enable with matching altname[] too) */
45 
46 
47 #define _USE_MKFS 0
48 /* This option switches f_mkfs() function. (0:Disable or 1:Enable) */
49 
50 
51 #define _USE_FASTSEEK 0
52 /* This option switches fast seek function. (0:Disable or 1:Enable) */
53 
54 
55 #define _USE_EXPAND 0
56 /* This option switches f_expand function. (0:Disable or 1:Enable) */
57 
58 
59 #define _USE_CHMOD 1
60 /* This option switches attribute manipulation functions, f_chmod() and f_utime().
61 / (0:Disable or 1:Enable) Also _FS_READONLY needs to be 0 to enable this option. */
62 
63 
64 #define _USE_LABEL 0
65 /* This option switches volume label functions, f_getlabel() and f_setlabel().
66 / (0:Disable or 1:Enable) */
67 
68 
69 #define _USE_FORWARD 0
70 /* This option switches f_forward() function. (0:Disable or 1:Enable) */
71 
72 
73 /*---------------------------------------------------------------------------/
74 / Locale and Namespace Configurations
75 /---------------------------------------------------------------------------*/
76 
77 #define _CODE_PAGE 850
78 /* This option specifies the OEM code page to be used on the target system.
79 / Incorrect setting of the code page can cause a file open failure.
80 /
81 / 1 - ASCII (No extended character. Non-LFN cfg. only)
82 / 437 - U.S.
83 / 720 - Arabic
84 / 737 - Greek
85 / 771 - KBL
86 / 775 - Baltic
87 / 850 - Latin 1
88 / 852 - Latin 2
89 / 855 - Cyrillic
90 / 857 - Turkish
91 / 860 - Portuguese
92 / 861 - Icelandic
93 / 862 - Hebrew
94 / 863 - Canadian French
95 / 864 - Arabic
96 / 865 - Nordic
97 / 866 - Russian
98 / 869 - Greek 2
99 / 932 - Japanese (DBCS)
100 / 936 - Simplified Chinese (DBCS)
101 / 949 - Korean (DBCS)
102 / 950 - Traditional Chinese (DBCS)
103 */
104 
105 
106 #define _USE_LFN 3
107 #define _MAX_LFN 255
108 /* The _USE_LFN switches the support of long file name (LFN).
109 /
110 / 0: Disable support of LFN. _MAX_LFN has no effect.
111 / 1: Enable LFN with static working buffer on the BSS. Always NOT thread-safe.
112 / 2: Enable LFN with dynamic working buffer on the STACK.
113 / 3: Enable LFN with dynamic working buffer on the HEAP.
114 /
115 / To enable the LFN, Unicode handling functions (option/unicode.c) must be added
116 / to the project. The working buffer occupies (_MAX_LFN + 1) * 2 bytes and
117 / additional 608 bytes at exFAT enabled. _MAX_LFN can be in range from 12 to 255.
118 / It should be set 255 to support full featured LFN operations.
119 / When use stack for the working buffer, take care on stack overflow. When use heap
120 / memory for the working buffer, memory management functions, ff_memalloc() and
121 / ff_memfree(), must be added to the project. */
122 
123 
124 #define _LFN_UNICODE 0
125 /* This option switches character encoding on the API. (0:ANSI/OEM or 1:UTF-16)
126 / To use Unicode string for the path name, enable LFN and set _LFN_UNICODE = 1.
127 / This option also affects behavior of string I/O functions. */
128 
129 
130 #define _STRF_ENCODE 3
131 /* When _LFN_UNICODE == 1, this option selects the character encoding ON THE FILE to
132 / be read/written via string I/O functions, f_gets(), f_putc(), f_puts and f_printf().
133 /
134 / 0: ANSI/OEM
135 / 1: UTF-16LE
136 / 2: UTF-16BE
137 / 3: UTF-8
138 /
139 / This option has no effect when _LFN_UNICODE == 0. */
140 
141 
142 #define _FS_RPATH 1
143 /* This option configures support of relative path.
144 /
145 / 0: Disable relative path and remove related functions.
146 / 1: Enable relative path. f_chdir() and f_chdrive() are available.
147 / 2: f_getcwd() function is available in addition to 1.
148 */
149 
150 
151 /*---------------------------------------------------------------------------/
152 / Drive/Volume Configurations
153 /---------------------------------------------------------------------------*/
154 
155 #define _VOLUMES 1
156 /* Number of volumes (logical drives) to be used. */
157 
158 
159 #define _STR_VOLUME_ID 0
160 #define _VOLUME_STRS "RAM","NAND","CF","SD","SD2","USB","USB2","USB3"
161 /* _STR_VOLUME_ID switches string support of volume ID.
162 / When _STR_VOLUME_ID is set to 1, also pre-defined strings can be used as drive
163 / number in the path name. _VOLUME_STRS defines the drive ID strings for each
164 / logical drives. Number of items must be equal to _VOLUMES. Valid characters for
165 / the drive ID strings are: A-Z and 0-9. */
166 
167 
168 #define _MULTI_PARTITION 0
169 /* This option switches support of multi-partition on a physical drive.
170 / By default (0), each logical drive number is bound to the same physical drive
171 / number and only an FAT volume found on the physical drive will be mounted.
172 / When multi-partition is enabled (1), each logical drive number can be bound to
173 / arbitrary physical drive and partition listed in the VolToPart[]. Also f_fdisk()
174 / funciton will be available. */
175 
176 
177 #define _MIN_SS 512
178 #define _MAX_SS 512
179 /* These options configure the range of sector size to be supported. (512, 1024,
180 / 2048 or 4096) Always set both 512 for most systems, all type of memory cards and
181 / harddisk. But a larger value may be required for on-board flash memory and some
182 / type of optical media. When _MAX_SS is larger than _MIN_SS, FatFs is configured
183 / to variable sector size and GET_SECTOR_SIZE command must be implemented to the
184 / disk_ioctl() function. */
185 
186 
187 #define _USE_TRIM 0
188 /* This option switches support of ATA-TRIM. (0:Disable or 1:Enable)
189 / To enable Trim function, also CTRL_TRIM command should be implemented to the
190 / disk_ioctl() function. */
191 
192 
193 #define _FS_NOFSINFO 0
194 /* If you need to know correct free space on the FAT32 volume, set bit 0 of this
195 / option, and f_getfree() function at first time after volume mount will force
196 / a full FAT scan. Bit 1 controls the use of last allocated cluster number.
197 /
198 / bit0=0: Use free cluster count in the FSINFO if available.
199 / bit0=1: Do not trust free cluster count in the FSINFO.
200 / bit1=0: Use last allocated cluster number in the FSINFO if available.
201 / bit1=1: Do not trust last allocated cluster number in the FSINFO.
202 */
203 
204 
205 
206 /*---------------------------------------------------------------------------/
207 / System Configurations
208 /---------------------------------------------------------------------------*/
209 
210 #define _FS_TINY 0
211 /* This option switches tiny buffer configuration. (0:Normal or 1:Tiny)
212 / At the tiny configuration, size of file object (FIL) is reduced _MAX_SS bytes.
213 / Instead of private sector buffer eliminated from the file object, common sector
214 / buffer in the file system object (FATFS) is used for the file data transfer. */
215 
216 
217 #define _FS_EXFAT 1
218 /* This option switches support of exFAT file system. (0:Disable or 1:Enable)
219 / When enable exFAT, also LFN needs to be enabled. (_USE_LFN >= 1)
220 / Note that enabling exFAT discards C89 compatibility. */
221 
222 
223 #define _FS_NORTC 0
224 #define _NORTC_MON 1
225 #define _NORTC_MDAY 1
226 #define _NORTC_YEAR 2016
227 /* The option _FS_NORTC switches timestamp functiton. If the system does not have
228 / any RTC function or valid timestamp is not needed, set _FS_NORTC = 1 to disable
229 / the timestamp function. All objects modified by FatFs will have a fixed timestamp
230 / defined by _NORTC_MON, _NORTC_MDAY and _NORTC_YEAR in local time.
231 / To enable timestamp function (_FS_NORTC = 0), get_fattime() function need to be
232 / added to the project to get current time form real-time clock. _NORTC_MON,
233 / _NORTC_MDAY and _NORTC_YEAR have no effect.
234 / These options have no effect at read-only configuration (_FS_READONLY = 1). */
235 
236 
237 #define _FS_LOCK 0
238 /* The option _FS_LOCK switches file lock function to control duplicated file open
239 / and illegal operation to open objects. This option must be 0 when _FS_READONLY
240 / is 1.
241 /
242 / 0: Disable file lock function. To avoid volume corruption, application program
243 / should avoid illegal open, remove and rename to the open objects.
244 / >0: Enable file lock function. The value defines how many files/sub-directories
245 / can be opened simultaneously under file lock control. Note that the file
246 / lock control is independent of re-entrancy. */
247 
248 
249 #define _FS_REENTRANT 1
250 #define _FS_TIMEOUT MS2ST(1000)
251 #define _SYNC_t semaphore_t*
252 /* The option _FS_REENTRANT switches the re-entrancy (thread safe) of the FatFs
253 / module itself. Note that regardless of this option, file access to different
254 / volume is always re-entrant and volume control functions, f_mount(), f_mkfs()
255 / and f_fdisk() function, are always not re-entrant. Only file/directory access
256 / to the same volume is under control of this function.
257 /
258 / 0: Disable re-entrancy. _FS_TIMEOUT and _SYNC_t have no effect.
259 / 1: Enable re-entrancy. Also user provided synchronization handlers,
260 / ff_req_grant(), ff_rel_grant(), ff_del_syncobj() and ff_cre_syncobj()
261 / function, must be added to the project. Samples are available in
262 / option/syscall.c.
263 /
264 / The _FS_TIMEOUT defines timeout period in unit of time tick.
265 / The _SYNC_t defines O/S dependent sync object type. e.g. HANDLE, ID, OS_EVENT*,
266 / SemaphoreHandle_t and etc.. A header file for O/S definitions needs to be
267 / included somewhere in the scope of ff.h. */
268 
269 /* #include <windows.h> // O/S definitions */
270 
271 
272 /*--- End of configuration options ---*/