Pulse Oximeter (NONIN) communicates with mbed via Bluetooth dongle and sends Heart Rate and Oxygen Saturation via GPRS module
Dependencies: C12832 GPS GSM mbed
Fork of myBlueUSB_localfix by
FATFileSystem/integer.h@0:003889bc474f, 2013-12-07 (annotated)
- Committer:
- nobukuma
- Date:
- Sat Dec 07 14:19:00 2013 +0000
- Revision:
- 0:003889bc474f
http://mbed.org/users/networker/code/myBlueUSB/ rev13??rev12??????????
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
nobukuma | 0:003889bc474f | 1 | /*-------------------------------------------*/ |
nobukuma | 0:003889bc474f | 2 | /* Integer type definitions for FatFs module */ |
nobukuma | 0:003889bc474f | 3 | /*-------------------------------------------*/ |
nobukuma | 0:003889bc474f | 4 | |
nobukuma | 0:003889bc474f | 5 | #ifndef _INTEGER |
nobukuma | 0:003889bc474f | 6 | |
nobukuma | 0:003889bc474f | 7 | /* These types must be 16-bit, 32-bit or larger integer */ |
nobukuma | 0:003889bc474f | 8 | typedef int INT; |
nobukuma | 0:003889bc474f | 9 | typedef unsigned int UINT; |
nobukuma | 0:003889bc474f | 10 | |
nobukuma | 0:003889bc474f | 11 | /* These types must be 8-bit integer */ |
nobukuma | 0:003889bc474f | 12 | typedef signed char CHAR; |
nobukuma | 0:003889bc474f | 13 | typedef unsigned char UCHAR; |
nobukuma | 0:003889bc474f | 14 | typedef unsigned char BYTE; |
nobukuma | 0:003889bc474f | 15 | |
nobukuma | 0:003889bc474f | 16 | /* These types must be 16-bit integer */ |
nobukuma | 0:003889bc474f | 17 | typedef short SHORT; |
nobukuma | 0:003889bc474f | 18 | typedef unsigned short USHORT; |
nobukuma | 0:003889bc474f | 19 | typedef unsigned short WORD; |
nobukuma | 0:003889bc474f | 20 | |
nobukuma | 0:003889bc474f | 21 | /* These types must be 32-bit integer */ |
nobukuma | 0:003889bc474f | 22 | typedef long LONG; |
nobukuma | 0:003889bc474f | 23 | typedef unsigned long ULONG; |
nobukuma | 0:003889bc474f | 24 | typedef unsigned long DWORD; |
nobukuma | 0:003889bc474f | 25 | |
nobukuma | 0:003889bc474f | 26 | /* Boolean type */ |
nobukuma | 0:003889bc474f | 27 | typedef enum { FALSE = 0, TRUE } BOOL; |
nobukuma | 0:003889bc474f | 28 | |
nobukuma | 0:003889bc474f | 29 | #define _INTEGER |
nobukuma | 0:003889bc474f | 30 | #endif |