手動機アーム、mbed基盤のspiをおくるだけのプログラムです(9/4)

Dependencies:   SPI_master_arm_shudouki mbed

Fork of SPI_master_arm_shudouki2 by F^3 RC 2班

Committer:
yoka06
Date:
Mon Aug 21 08:49:06 2017 +0000
Revision:
0:76d1c7f13415
a

Who changed what in which revision?

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