Xbee CountUp

Dependencies:   mbed

Fork of HeptaXbee_CountUp by 智也 大野

Committer:
tomoya123
Date:
Tue Dec 13 07:55:03 2016 +0000
Revision:
1:715b80d2a02b
Parent:
0:0a7fa0911e6c
Xbee CountUp

Who changed what in which revision?

UserRevisionLine numberNew contents of line
tomoya123 0:0a7fa0911e6c 1 /*-------------------------------------------*/
tomoya123 0:0a7fa0911e6c 2 /* Integer type definitions for FatFs module */
tomoya123 0:0a7fa0911e6c 3 /*-------------------------------------------*/
tomoya123 0:0a7fa0911e6c 4
tomoya123 0:0a7fa0911e6c 5 #ifndef _INTEGER
tomoya123 0:0a7fa0911e6c 6 #define _INTEGER
tomoya123 0:0a7fa0911e6c 7
tomoya123 0:0a7fa0911e6c 8 #ifdef _WIN32 /* FatFs development platform */
tomoya123 0:0a7fa0911e6c 9
tomoya123 0:0a7fa0911e6c 10 #include <windows.h>
tomoya123 0:0a7fa0911e6c 11 #include <tchar.h>
tomoya123 0:0a7fa0911e6c 12
tomoya123 0:0a7fa0911e6c 13 #else /* Embedded platform */
tomoya123 0:0a7fa0911e6c 14
tomoya123 0:0a7fa0911e6c 15 /* These types must be 16-bit, 32-bit or larger integer */
tomoya123 0:0a7fa0911e6c 16 typedef int INT;
tomoya123 0:0a7fa0911e6c 17 typedef unsigned int UINT;
tomoya123 0:0a7fa0911e6c 18
tomoya123 0:0a7fa0911e6c 19 /* These types must be 8-bit integer */
tomoya123 0:0a7fa0911e6c 20 typedef char CHAR;
tomoya123 0:0a7fa0911e6c 21 typedef unsigned char UCHAR;
tomoya123 0:0a7fa0911e6c 22 typedef unsigned char BYTE;
tomoya123 0:0a7fa0911e6c 23
tomoya123 0:0a7fa0911e6c 24 /* These types must be 16-bit integer */
tomoya123 0:0a7fa0911e6c 25 typedef short SHORT;
tomoya123 0:0a7fa0911e6c 26 typedef unsigned short USHORT;
tomoya123 0:0a7fa0911e6c 27 typedef unsigned short WORD;
tomoya123 0:0a7fa0911e6c 28 typedef unsigned short WCHAR;
tomoya123 0:0a7fa0911e6c 29
tomoya123 0:0a7fa0911e6c 30 /* These types must be 32-bit integer */
tomoya123 0:0a7fa0911e6c 31 typedef long LONG;
tomoya123 0:0a7fa0911e6c 32 typedef unsigned long ULONG;
tomoya123 0:0a7fa0911e6c 33 typedef unsigned long DWORD;
tomoya123 0:0a7fa0911e6c 34
tomoya123 0:0a7fa0911e6c 35 #endif
tomoya123 0:0a7fa0911e6c 36
tomoya123 0:0a7fa0911e6c 37 #endif