1 /*
2  * This file is part of the MicroPython project, http://micropython.org/
3  *
4  * The MIT License (MIT)
5  *
6  * Copyright (c) 2019 Damien P. George
7  *
8  * Permission is hereby granted, free of charge, to any person obtaining a copy
9  * of this software and associated documentation files (the "Software"), to deal
10  * in the Software without restriction, including without limitation the rights
11  * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
12  * copies of the Software, and to permit persons to whom the Software is
13  * furnished to do so, subject to the following conditions:
14  *
15  * The above copyright notice and this permission notice shall be included in
16  * all copies or substantial portions of the Software.
17  *
18  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
19  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
20  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
21  * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
22  * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
23  * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
24  * THE SOFTWARE.
25  */
26 
27 #define FFCONF_DEF 86604
28 
29 #define FF_FS_READONLY      1
30 #define FF_FS_MINIMIZE      0
31 #define FF_USE_STRFUNC      0
32 
33 #define FF_USE_FIND         0
34 #define FF_USE_MKFS         0
35 #define FF_USE_FASTSEEK     0
36 #define FF_USE_EXPAND       0
37 #define FF_USE_CHMOD        0
38 #define FF_USE_LABEL        0
39 #define FF_USE_FORWARD      0
40 
41 #define FF_CODE_PAGE        437
42 #define FF_USE_LFN          1
43 #define FF_MAX_LFN          255
44 #define FF_LFN_UNICODE      0
45 #define FF_LFN_BUF          255
46 #define FF_SFN_BUF          12
47 #define FF_STRF_ENCODE      3
48 #define FF_FS_RPATH         0
49 
50 #define FF_VOLUMES          1
51 #define FF_STR_VOLUME_ID    0
52 #define FF_MULTI_PARTITION  0
53 #define FF_MIN_SS           512
54 #define FF_MAX_SS           512
55 #define FF_USE_TRIM         0
56 #define FF_FS_NOFSINFO      0
57 
58 #define FF_FS_TINY          1
59 #define FF_FS_EXFAT         0
60 #define FF_FS_NORTC         1
61 #define FF_NORTC_MON        1
62 #define FF_NORTC_MDAY       1
63 #define FF_NORTC_YEAR       2019
64 #define FF_FS_LOCK          0
65 #define FF_FS_REENTRANT     0
66