うおーるぼっとをWiiリモコンでコントロールする新しいプログラムです。 以前のものより、Wiiリモコンが早く繋がる様になりました。 It is a program which controls A with the Wii remote. ※ A Bluetooth dongle and a Wii remote control are needed.

Dependencies:   USBHost mbed FATFileSystem mbed-rtos

Committer:
jksoft
Date:
Mon Jun 10 16:01:50 2013 +0000
Revision:
0:fccb789424fc
1.0

Who changed what in which revision?

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