This is SDFileSystem which corrected the bug for MiMicSDK.

Dependents:   MbedFileServer_1768MiniDK2 RedWireBridge IssueDebug_gcc MiMicRemoteMCU-for-Mbed ... more

Fork of SDFileSystem by mbed official

Revision:
6:972a52e4d92c
Parent:
5:2c7b6bd5b079
--- a/FATFileSystem/FATDirHandle.h	Thu Apr 25 02:14:56 2013 +0000
+++ b/FATFileSystem/FATDirHandle.h	Fri Apr 26 09:07:37 2013 +0000
@@ -21,11 +21,17 @@
  */
 #ifndef MBED_FATDIRHANDLE_H
 #define MBED_FATDIRHANDLE_H
-
+#include "ff.h"
 #include "DirHandle.h"
 
 using namespace mbed;
 
+struct direntFAT:public dirent
+{
+    unsigned char fattrib;
+    unsigned int fsize;
+};
+
 class FATDirHandle : public DirHandle {
 
  public:
@@ -38,7 +44,7 @@
 
  private:
     FATFS_DIR dir;
-    struct dirent cur_entry;
+    struct direntFAT cur_entry;
 
 };