筋電センサプログラム

Dependencies:   mbed-rtos mbed

筋電

Committer:
dhpt
Date:
Thu Jan 04 06:30:00 2018 +0000
Revision:
13:94ce8bd0c0e1
Parent:
0:42ab58db8182
???????????????; ????read?3.3????

Who changed what in which revision?

UserRevisionLine numberNew contents of line
dhpt 0:42ab58db8182 1 /* typedef.h */
dhpt 0:42ab58db8182 2 #ifndef _TYPEDEF_H_
dhpt 0:42ab58db8182 3 #define _TYPEDEF_H_
dhpt 0:42ab58db8182 4
dhpt 0:42ab58db8182 5 typedef char CHR8;
dhpt 0:42ab58db8182 6 typedef int INT32;
dhpt 0:42ab58db8182 7 typedef float FLT32;
dhpt 0:42ab58db8182 8 typedef double DBL64;
dhpt 0:42ab58db8182 9
dhpt 0:42ab58db8182 10 typedef unsigned char UCHR8;
dhpt 0:42ab58db8182 11 typedef unsigned int UINT32;
dhpt 0:42ab58db8182 12
dhpt 0:42ab58db8182 13
dhpt 0:42ab58db8182 14 #endif