Igual que FATFileSystem

Fork of FatFileSystem by mbed unsupported

Committer:
escalona
Date:
Wed Apr 16 10:57:44 2014 +0000
Revision:
4:39c59f82f35e
Parent:
0:97df4125f18d
No hay cambios

Who changed what in which revision?

UserRevisionLine numberNew contents of line
mbed_unsupported 0:97df4125f18d 1 /*-------------------------------------------*/
mbed_unsupported 0:97df4125f18d 2 /* Integer type definitions for FatFs module */
mbed_unsupported 0:97df4125f18d 3 /*-------------------------------------------*/
mbed_unsupported 0:97df4125f18d 4
mbed_unsupported 0:97df4125f18d 5 #ifndef _INTEGER
mbed_unsupported 0:97df4125f18d 6
mbed_unsupported 0:97df4125f18d 7 /* These types must be 16-bit, 32-bit or larger integer */
escalona 4:39c59f82f35e 8 typedef int INT;
escalona 4:39c59f82f35e 9 typedef unsigned int UINT;
mbed_unsupported 0:97df4125f18d 10
mbed_unsupported 0:97df4125f18d 11 /* These types must be 8-bit integer */
escalona 4:39c59f82f35e 12 typedef signed char CHAR;
escalona 4:39c59f82f35e 13 typedef unsigned char UCHAR;
escalona 4:39c59f82f35e 14 typedef unsigned char BYTE;
mbed_unsupported 0:97df4125f18d 15
mbed_unsupported 0:97df4125f18d 16 /* These types must be 16-bit integer */
escalona 4:39c59f82f35e 17 typedef short SHORT;
escalona 4:39c59f82f35e 18 typedef unsigned short USHORT;
escalona 4:39c59f82f35e 19 typedef unsigned short WORD;
mbed_unsupported 0:97df4125f18d 20
mbed_unsupported 0:97df4125f18d 21 /* These types must be 32-bit integer */
escalona 4:39c59f82f35e 22 typedef long LONG;
escalona 4:39c59f82f35e 23 typedef unsigned long ULONG;
escalona 4:39c59f82f35e 24 typedef unsigned long DWORD;
mbed_unsupported 0:97df4125f18d 25
mbed_unsupported 0:97df4125f18d 26 /* Boolean type */
mbed_unsupported 0:97df4125f18d 27 typedef enum { FALSE = 0, TRUE } BOOL;
mbed_unsupported 0:97df4125f18d 28
mbed_unsupported 0:97df4125f18d 29 #define _INTEGER
mbed_unsupported 0:97df4125f18d 30 #endif