program which tests the CAR project (concerning the CAN bus)

Dependencies:   mbed

Revision:
0:8097eeede645
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/common_types.h	Sun Aug 02 12:55:55 2015 +0000
@@ -0,0 +1,13 @@
+#ifndef __COMMON_TYPES_H__
+#define __COMMON_TYPES_H__
+
+typedef unsigned char uint8;
+typedef char int8;
+
+typedef unsigned short uint16;
+typedef short int16;
+
+typedef unsigned int uint32;
+typedef int int32;
+
+#endif //__COMMON_TYPES_H__