
#ifndef _TYPES_H_
#define _TYPES_H_

typedef unsigned char uint8;
typedef unsigned short int uint16;
typedef unsigned long int uint32;

typedef signed char int8;
typedef signed short int int16;
typedef signed long int int32;

//
//typedef unsigned char UINT8;
//typedef unsigned short int UINT16;
//typedef unsigned long int UINT32;


#endif /* _TYPES_H_ */

