app board Volt and Current logger INA266 MMA766

Dependents:   Logger_V1

Fork of FatFileSystem by mbed unsupported

Committer:
hirox
Date:
Sun Jun 16 14:18:50 2013 +0000
Revision:
4:9e1d20f59925
Parent:
0:97df4125f18d
app-board Volt and Currnet Logger

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 */
hirox 4:9e1d20f59925 8 typedef int INT;
hirox 4:9e1d20f59925 9 typedef unsigned int UINT;
mbed_unsupported 0:97df4125f18d 10
mbed_unsupported 0:97df4125f18d 11 /* These types must be 8-bit integer */
hirox 4:9e1d20f59925 12 typedef signed char CHAR;
hirox 4:9e1d20f59925 13 typedef unsigned char UCHAR;
hirox 4:9e1d20f59925 14 typedef unsigned char BYTE;
mbed_unsupported 0:97df4125f18d 15
mbed_unsupported 0:97df4125f18d 16 /* These types must be 16-bit integer */
hirox 4:9e1d20f59925 17 typedef short SHORT;
hirox 4:9e1d20f59925 18 typedef unsigned short USHORT;
hirox 4:9e1d20f59925 19 typedef unsigned short WORD;
mbed_unsupported 0:97df4125f18d 20
mbed_unsupported 0:97df4125f18d 21 /* These types must be 32-bit integer */
hirox 4:9e1d20f59925 22 typedef long LONG;
hirox 4:9e1d20f59925 23 typedef unsigned long ULONG;
hirox 4:9e1d20f59925 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