FATFileSystem

Dependents:   SDFileSystem IPS SDFileSystem SDFileSystem ... more

Fork of FATFileSystem by mbed official

Committer:
geky
Date:
Mon Jul 10 15:37:41 2017 +0000
Revision:
10:28e685e5ff7f
Parent:
1:46ce1e16c870
Added stubs for FileSystemLike updates

Who changed what in which revision?

UserRevisionLine numberNew contents of line
emilmont 1:46ce1e16c870 1 /* mbed Microcontroller Library
emilmont 1:46ce1e16c870 2 * Copyright (c) 2006-2012 ARM Limited
emilmont 1:46ce1e16c870 3 *
emilmont 1:46ce1e16c870 4 * Permission is hereby granted, free of charge, to any person obtaining a copy
emilmont 1:46ce1e16c870 5 * of this software and associated documentation files (the "Software"), to deal
emilmont 1:46ce1e16c870 6 * in the Software without restriction, including without limitation the rights
emilmont 1:46ce1e16c870 7 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
emilmont 1:46ce1e16c870 8 * copies of the Software, and to permit persons to whom the Software is
emilmont 1:46ce1e16c870 9 * furnished to do so, subject to the following conditions:
emilmont 1:46ce1e16c870 10 *
emilmont 1:46ce1e16c870 11 * The above copyright notice and this permission notice shall be included in
emilmont 1:46ce1e16c870 12 * all copies or substantial portions of the Software.
emilmont 1:46ce1e16c870 13 *
emilmont 1:46ce1e16c870 14 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
emilmont 1:46ce1e16c870 15 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
emilmont 1:46ce1e16c870 16 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
emilmont 1:46ce1e16c870 17 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
emilmont 1:46ce1e16c870 18 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
emilmont 1:46ce1e16c870 19 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
emilmont 1:46ce1e16c870 20 * SOFTWARE.
emilmont 1:46ce1e16c870 21 */
emilmont 1:46ce1e16c870 22 #ifndef MBED_FATFILEHANDLE_H
emilmont 1:46ce1e16c870 23 #define MBED_FATFILEHANDLE_H
emilmont 1:46ce1e16c870 24
emilmont 1:46ce1e16c870 25 #include "FileHandle.h"
emilmont 1:46ce1e16c870 26
emilmont 1:46ce1e16c870 27 using namespace mbed;
emilmont 1:46ce1e16c870 28
emilmont 1:46ce1e16c870 29 class FATFileHandle : public FileHandle {
emilmont 1:46ce1e16c870 30 public:
emilmont 1:46ce1e16c870 31
emilmont 1:46ce1e16c870 32 FATFileHandle(FIL fh);
emilmont 1:46ce1e16c870 33 virtual int close();
emilmont 1:46ce1e16c870 34 virtual ssize_t write(const void* buffer, size_t length);
emilmont 1:46ce1e16c870 35 virtual ssize_t read(void* buffer, size_t length);
emilmont 1:46ce1e16c870 36 virtual int isatty();
emilmont 1:46ce1e16c870 37 virtual off_t lseek(off_t position, int whence);
emilmont 1:46ce1e16c870 38 virtual int fsync();
emilmont 1:46ce1e16c870 39 virtual off_t flen();
geky 10:28e685e5ff7f 40
geky 10:28e685e5ff7f 41 virtual off_t seek(off_t position, int whence) { return lseek(position, whence); }
geky 10:28e685e5ff7f 42 virtual off_t size() { return flen(); }
emilmont 1:46ce1e16c870 43
emilmont 1:46ce1e16c870 44 protected:
geky 10:28e685e5ff7f 45
emilmont 1:46ce1e16c870 46 FIL _fh;
emilmont 1:46ce1e16c870 47
emilmont 1:46ce1e16c870 48 };
emilmont 1:46ce1e16c870 49
emilmont 1:46ce1e16c870 50 #endif