SD Card Interface class. Log raw data bytes to memory addresses of your choice, or format the card and use the FAT file system to write files.
Diff: FATFileSystem/Interface/FATFileSystem.h
- Revision:
- 6:ddf09d859ed7
- Parent:
- 4:9a5878d316d5
--- a/FATFileSystem/Interface/FATFileSystem.h Sat Jan 15 05:58:22 2011 +0000 +++ b/FATFileSystem/Interface/FATFileSystem.h Sun Jan 16 09:20:30 2011 +0000 @@ -25,6 +25,8 @@ FATFileSystem(const char* SystemName); virtual ~FATFileSystem(); + + int format(unsigned int allocationunit); virtual FileHandle* open(const char* filename, int flags); virtual int remove(const char* filename);