car chassis

Dependencies:   Servo mbed-rtos mbed

Committer:
mariob
Date:
Tue Oct 13 14:08:44 2015 +0000
Revision:
4:7fa7f78cbb92
Parent:
0:ce6055872f4e
delete unused library

Who changed what in which revision?

UserRevisionLine numberNew contents of line
mariob 0:ce6055872f4e 1 #ifndef __COMMON_TYPES_H__
mariob 0:ce6055872f4e 2 #define __COMMON_TYPES_H__
mariob 0:ce6055872f4e 3
mariob 0:ce6055872f4e 4 typedef unsigned char uint8;
mariob 0:ce6055872f4e 5 typedef char int8;
mariob 0:ce6055872f4e 6
mariob 0:ce6055872f4e 7 typedef unsigned short uint16;
mariob 0:ce6055872f4e 8 typedef short int16;
mariob 0:ce6055872f4e 9
mariob 0:ce6055872f4e 10 typedef unsigned int uint32;
mariob 0:ce6055872f4e 11 typedef int int32;
mariob 0:ce6055872f4e 12
mariob 0:ce6055872f4e 13 #endif //__COMMON_TYPES_H__