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/Core/integer.h
- Revision:
- 6:ddf09d859ed7
- Parent:
- 3:210eb67b260c
--- a/FATFileSystem/Core/integer.h Sat Jan 15 05:58:22 2011 +0000 +++ b/FATFileSystem/Core/integer.h Sun Jan 16 09:20:30 2011 +0000 @@ -14,7 +14,7 @@ typedef unsigned int UINT; /* These types must be 8-bit integer */ -typedef signed char CHAR; +typedef char CHAR; typedef unsigned char UCHAR; typedef unsigned char BYTE; @@ -22,6 +22,7 @@ typedef short SHORT; typedef unsigned short USHORT; typedef unsigned short WORD; +typedef unsigned short WCHAR; /* These types must be 32-bit integer */ typedef long LONG;