mbed-os5 only for TYBLE16

Dependents:   TYBLE16_simple_data_logger TYBLE16_MP3_Air

Committer:
kenjiArai
Date:
Tue Dec 31 06:02:27 2019 +0000
Revision:
1:9db0e321a9f4
Parent:
0:5b88d5760320
updated based on mbed-os5.15.0

Who changed what in which revision?

UserRevisionLine numberNew contents of line
kenjiArai 0:5b88d5760320 1 /* filesystem
kenjiArai 0:5b88d5760320 2 * Copyright (c) 2016 ARM Limited
kenjiArai 0:5b88d5760320 3 *
kenjiArai 0:5b88d5760320 4 * Licensed under the Apache License, Version 2.0 (the "License");
kenjiArai 0:5b88d5760320 5 * you may not use this file except in compliance with the License.
kenjiArai 0:5b88d5760320 6 * You may obtain a copy of the License at
kenjiArai 0:5b88d5760320 7 *
kenjiArai 0:5b88d5760320 8 * http://www.apache.org/licenses/LICENSE-2.0
kenjiArai 0:5b88d5760320 9 *
kenjiArai 0:5b88d5760320 10 * Unless required by applicable law or agreed to in writing, software
kenjiArai 0:5b88d5760320 11 * distributed under the License is distributed on an "AS IS" BASIS,
kenjiArai 0:5b88d5760320 12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
kenjiArai 0:5b88d5760320 13 * See the License for the specific language governing permissions and
kenjiArai 0:5b88d5760320 14 * limitations under the License.
kenjiArai 0:5b88d5760320 15 */
kenjiArai 0:5b88d5760320 16 #ifndef MBED_FILESYSTEM_API_H
kenjiArai 0:5b88d5760320 17 #define MBED_FILESYSTEM_API_H
kenjiArai 0:5b88d5760320 18 /** \addtogroup filesystem */
kenjiArai 0:5b88d5760320 19 /** @{*/
kenjiArai 0:5b88d5760320 20
kenjiArai 0:5b88d5760320 21
kenjiArai 0:5b88d5760320 22 // Standard types
kenjiArai 0:5b88d5760320 23 #include "platform/platform.h"
kenjiArai 0:5b88d5760320 24
kenjiArai 0:5b88d5760320 25 // FileSystem classes
kenjiArai 1:9db0e321a9f4 26 #include "features/storage/filesystem/FileSystem.h"
kenjiArai 1:9db0e321a9f4 27 #include "features/storage/filesystem/File.h"
kenjiArai 1:9db0e321a9f4 28 #include "features/storage/filesystem/Dir.h"
kenjiArai 0:5b88d5760320 29
kenjiArai 0:5b88d5760320 30 // BlockDevice classes
kenjiArai 1:9db0e321a9f4 31 #include "features/storage/blockdevice/BlockDevice.h"
kenjiArai 1:9db0e321a9f4 32 #include "features/storage/blockdevice/ChainingBlockDevice.h"
kenjiArai 1:9db0e321a9f4 33 #include "features/storage/blockdevice/SlicingBlockDevice.h"
kenjiArai 1:9db0e321a9f4 34 #include "features/storage/blockdevice/HeapBlockDevice.h"
kenjiArai 0:5b88d5760320 35
kenjiArai 0:5b88d5760320 36 /** @}*/
kenjiArai 0:5b88d5760320 37 #endif