mirror of https://github.com/ARMmbed/mbed-os.git
Filesystem: Moved retarget related file interfaces into platform
parent
77243ef46b
commit
61c9683644
|
@ -18,7 +18,7 @@
|
|||
#define FILE_H
|
||||
|
||||
#include "filesystem/FileSystem.h"
|
||||
#include "drivers/FileHandle.h"
|
||||
#include "platform/FileHandle.h"
|
||||
|
||||
namespace mbed {
|
||||
/** \addtogroup filesystem */
|
||||
|
|
|
@ -19,7 +19,7 @@
|
|||
|
||||
#include "platform/platform.h"
|
||||
|
||||
#include "drivers/FileBase.h"
|
||||
#include "platform/FileBase.h"
|
||||
#include "BlockDevice.h"
|
||||
|
||||
namespace mbed {
|
||||
|
|
2
mbed.h
2
mbed.h
|
@ -94,7 +94,7 @@
|
|||
#include "drivers/LowPowerTimeout.h"
|
||||
#include "drivers/LowPowerTicker.h"
|
||||
#include "drivers/LowPowerTimer.h"
|
||||
#include "drivers/LocalFileSystem.h"
|
||||
#include "platform/LocalFileSystem.h"
|
||||
#include "drivers/InterruptIn.h"
|
||||
#include "platform/mbed_wait_api.h"
|
||||
#include "hal/sleep_api.h"
|
||||
|
|
|
@ -13,9 +13,9 @@
|
|||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
#include "drivers/FileBase.h"
|
||||
#include "drivers/FileLike.h"
|
||||
#include "drivers/FileHandle.h"
|
||||
#include "platform/FileBase.h"
|
||||
#include "platform/FileLike.h"
|
||||
#include "platform/FileHandle.h"
|
||||
|
||||
namespace mbed {
|
||||
|
|
@ -17,8 +17,8 @@
|
|||
#define MBED_FILELIKE_H
|
||||
|
||||
#include "platform/mbed_toolchain.h"
|
||||
#include "drivers/FileBase.h"
|
||||
#include "drivers/FileHandle.h"
|
||||
#include "platform/FileBase.h"
|
||||
#include "platform/FileHandle.h"
|
||||
|
||||
namespace mbed {
|
||||
/** \addtogroup drivers */
|
|
@ -13,7 +13,7 @@
|
|||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
#include "drivers/FilePath.h"
|
||||
#include "platform/FilePath.h"
|
||||
|
||||
namespace mbed {
|
||||
|
|
@ -18,8 +18,8 @@
|
|||
|
||||
#include "platform/platform.h"
|
||||
|
||||
#include "drivers/FileSystemLike.h"
|
||||
#include "drivers/FileLike.h"
|
||||
#include "platform/FileSystemLike.h"
|
||||
#include "platform/FileLike.h"
|
||||
|
||||
namespace mbed {
|
||||
/** \addtogroup drivers */
|
|
@ -13,7 +13,7 @@
|
|||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
#include "drivers/FileSystemLike.h"
|
||||
#include "platform/FileSystemLike.h"
|
||||
|
||||
namespace mbed {
|
||||
|
|
@ -18,9 +18,9 @@
|
|||
|
||||
#include "platform/platform.h"
|
||||
|
||||
#include "drivers/FileBase.h"
|
||||
#include "drivers/FileHandle.h"
|
||||
#include "drivers/DirHandle.h"
|
||||
#include "platform/FileBase.h"
|
||||
#include "platform/FileHandle.h"
|
||||
#include "platform/DirHandle.h"
|
||||
|
||||
namespace mbed {
|
||||
/** \addtogroup drivers */
|
|
@ -13,7 +13,7 @@
|
|||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
#include "drivers/LocalFileSystem.h"
|
||||
#include "platform/LocalFileSystem.h"
|
||||
|
||||
#if DEVICE_LOCALFILESYSTEM
|
||||
|
|
@ -20,7 +20,7 @@
|
|||
|
||||
#if DEVICE_LOCALFILESYSTEM
|
||||
|
||||
#include "drivers/FileSystemLike.h"
|
||||
#include "platform/FileSystemLike.h"
|
||||
#include "platform/PlatformMutex.h"
|
||||
|
||||
namespace mbed {
|
|
@ -13,7 +13,7 @@
|
|||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
#include "drivers/Stream.h"
|
||||
#include "platform/Stream.h"
|
||||
|
||||
namespace mbed {
|
||||
|
|
@ -17,8 +17,8 @@
|
|||
#define MBED_STREAM_H
|
||||
|
||||
#include "platform/platform.h"
|
||||
#include "drivers/FileLike.h"
|
||||
#include "drivers/FileHandle.h"
|
||||
#include "platform/FileLike.h"
|
||||
#include "platform/FileHandle.h"
|
||||
#include <cstdarg>
|
||||
|
||||
namespace mbed {
|
|
@ -14,7 +14,7 @@
|
|||
* limitations under the License.
|
||||
*/
|
||||
#include "platform/platform.h"
|
||||
#include "drivers/FilePath.h"
|
||||
#include "platform/FilePath.h"
|
||||
#include "hal/serial_api.h"
|
||||
#include "platform/mbed_toolchain.h"
|
||||
#include "platform/mbed_semihost_api.h"
|
||||
|
|
Loading…
Reference in New Issue