B.A.T. working FATFileSystem
Fork of FATFileSystem by
ChaN/integer.h@6:a5fcdbf92056, 2015-11-26 (annotated)
- Committer:
- mbed_official
- Date:
- Thu Nov 26 13:30:57 2015 +0000
- Revision:
- 6:a5fcdbf92056
- Parent:
- 5:b3b3370574cf
Synchronized with git revision 7fcda4012c43cb7904b7250986e326d5c007a32a
Full URL: https://github.com/mbedmicro/mbed/commit/7fcda4012c43cb7904b7250986e326d5c007a32a/
[FATFileSystem] Updated FatFs to R0.11a & fixed sync bug
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
emilmont | 1:46ce1e16c870 | 1 | /*-------------------------------------------*/ |
emilmont | 1:46ce1e16c870 | 2 | /* Integer type definitions for FatFs module */ |
emilmont | 1:46ce1e16c870 | 3 | /*-------------------------------------------*/ |
emilmont | 1:46ce1e16c870 | 4 | |
mbed_official | 5:b3b3370574cf | 5 | #ifndef _FF_INTEGER |
mbed_official | 5:b3b3370574cf | 6 | #define _FF_INTEGER |
emilmont | 1:46ce1e16c870 | 7 | |
mbed_official | 6:a5fcdbf92056 | 8 | #ifdef _WIN32 /* Development platform */ |
emilmont | 1:46ce1e16c870 | 9 | |
emilmont | 1:46ce1e16c870 | 10 | #include <windows.h> |
emilmont | 1:46ce1e16c870 | 11 | #include <tchar.h> |
emilmont | 1:46ce1e16c870 | 12 | |
mbed_official | 5:b3b3370574cf | 13 | #else /* Embedded platform */ |
emilmont | 1:46ce1e16c870 | 14 | |
mbed_official | 6:a5fcdbf92056 | 15 | /* This type MUST be 8-bit */ |
mbed_official | 5:b3b3370574cf | 16 | typedef unsigned char BYTE; |
emilmont | 1:46ce1e16c870 | 17 | |
mbed_official | 6:a5fcdbf92056 | 18 | /* These types MUST be 16-bit */ |
mbed_official | 5:b3b3370574cf | 19 | typedef short SHORT; |
mbed_official | 5:b3b3370574cf | 20 | typedef unsigned short WORD; |
mbed_official | 5:b3b3370574cf | 21 | typedef unsigned short WCHAR; |
emilmont | 1:46ce1e16c870 | 22 | |
mbed_official | 6:a5fcdbf92056 | 23 | /* These types MUST be 16-bit or 32-bit */ |
mbed_official | 5:b3b3370574cf | 24 | typedef int INT; |
mbed_official | 5:b3b3370574cf | 25 | typedef unsigned int UINT; |
mbed_official | 5:b3b3370574cf | 26 | |
mbed_official | 6:a5fcdbf92056 | 27 | /* These types MUST be 32-bit */ |
mbed_official | 5:b3b3370574cf | 28 | typedef long LONG; |
mbed_official | 5:b3b3370574cf | 29 | typedef unsigned long DWORD; |
emilmont | 1:46ce1e16c870 | 30 | |
emilmont | 1:46ce1e16c870 | 31 | #endif |
emilmont | 1:46ce1e16c870 | 32 | |
emilmont | 1:46ce1e16c870 | 33 | #endif |