FATFileSystem

Dependents:   SDFileSystem IPS SDFileSystem SDFileSystem ... more

Fork of FATFileSystem by mbed official

Revision:
10:28e685e5ff7f
Parent:
1:46ce1e16c870
--- a/FATFileHandle.h	Sat Jul 30 20:47:51 2016 +0000
+++ b/FATFileHandle.h	Mon Jul 10 15:37:41 2017 +0000
@@ -37,9 +37,12 @@
     virtual off_t lseek(off_t position, int whence);
     virtual int fsync();
     virtual off_t flen();
+    
+    virtual off_t seek(off_t position, int whence) { return lseek(position, whence); }
+    virtual off_t size() { return flen(); }
 
 protected:
-
+    
     FIL _fh;
 
 };