.

Dependencies:   SDHCFileSystem mbed

Committer:
TickTock
Date:
Mon Nov 19 04:44:11 2012 +0000
Revision:
0:1596b8644523
Initial revision - just getting hw up and running

Who changed what in which revision?

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