First working version of a FATFileSystem compatible Chan FAT v0.8 implementation. This is intended to use with long file names and RTOS support. For now long file names work but RTOS support is still untested.

Dependents:   USB_MSC USB_CDC_MSD_Hello TFTPServerTest DMXStation ... more

Files at this revision

API Documentation at this revision

Comitter:
NeoBelerophon
Date:
Fri Feb 04 19:59:52 2011 +0000
Parent:
0:8ea634413549
Child:
2:629e4be333f3
Commit message:
Added FATDirHandle::getdir() -> return dir path string

Changed in this revision

FATDirHandle.h Show annotated file Show diff for this revision Revisions of this file
--- a/FATDirHandle.h	Tue Feb 01 21:47:45 2011 +0000
+++ b/FATDirHandle.h	Fri Feb 04 19:59:52 2011 +0000
@@ -19,6 +19,7 @@
     virtual void rewinddir();
     virtual off_t telldir();
     virtual void seekdir(off_t location);
+    char* getdir() const {return dir.dir;}
 
  private:
     DIR_t dir;