UART0 interface
[armadillo_firmware.git] / generic-FreeRTOS-demo / typedefs.h
blob1490b918a95920365d53f83cbea26fb8914041d6
1 #ifndef __typedefs_h
2 #define __typedefs_h
4 typedef unsigned char uint8_t;
5 typedef unsigned short int uint16_t;
6 typedef unsigned int uint32_t;
7 typedef unsigned long int uint64_t;
9 typedef signed char sint8_t;
10 typedef signed short int sint16_t;
11 typedef signed int sint32_t;
12 typedef signed long int sint64_t;
15 #endif //__typedefs_h