File tree Expand file tree Collapse file tree 4 files changed +49
-2
lines changed
TESTS/filesystem/fat_file_system Expand file tree Collapse file tree 4 files changed +49
-2
lines changed Original file line number Diff line number Diff line change 19
19
#include " utest.h"
20
20
21
21
#include " HeapBlockDevice.h"
22
- #include " File.h"
23
- #include " Dir.h"
24
22
#include " FATFileSystem.h"
25
23
#include < stdlib.h>
26
24
#include " retarget.h"
Original file line number Diff line number Diff line change
1
+ /* filesystem
2
+ * Copyright (c) 2016 ARM Limited
3
+ *
4
+ * Licensed under the Apache License, Version 2.0 (the "License");
5
+ * you may not use this file except in compliance with the License.
6
+ * You may obtain a copy of the License at
7
+ *
8
+ * http://www.apache.org/licenses/LICENSE-2.0
9
+ *
10
+ * Unless required by applicable law or agreed to in writing, software
11
+ * distributed under the License is distributed on an "AS IS" BASIS,
12
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
+ * See the License for the specific language governing permissions and
14
+ * limitations under the License.
15
+ */
16
+ #ifndef MBED_FILESYSTEM_API_H
17
+ #define MBED_FILESYSTEM_API_H
18
+ /** \addtogroup filesystem */
19
+ /** @{*/
20
+
21
+
22
+ // Standard types
23
+ #include "platform/platform.h"
24
+
25
+ // FileSystem classes
26
+ #include "filesystem/FileSystem.h"
27
+ #include "filesystem/File.h"
28
+ #include "filesystem/Dir.h"
29
+
30
+ // BlockDevice classes
31
+ #include "bd/BlockDevice.h"
32
+ #include "bd/BlockDevice.h"
33
+ #include "bd/ChainingBlockDevice.h"
34
+ #include "bd/SlicingBlockDevice.h"
35
+ #include "bd/HeapBlockDevice.h"
36
+
37
+
38
+ /** @}*/
39
+ #endif
Original file line number Diff line number Diff line change
1
+ {
2
+ "name" : " filesystem" ,
3
+ "config" : {
4
+ "present" : 1
5
+ }
6
+ }
Original file line number Diff line number Diff line change 47
47
#include " events/mbed_events.h"
48
48
#endif
49
49
50
+ #if MBED_CONF_FILESYSTEM_PRESENT
51
+ #include " filesystem/mbed_filesystem.h"
52
+ #endif
53
+
50
54
#include " platform/toolchain.h"
51
55
#include " platform/platform.h"
52
56
You can’t perform that action at this time.
0 commit comments