You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
294 B
C

#ifndef _DATA_TYPE_H
#define _DATA_TYPE_H
typedef unsigned long ulong; //DWORD
typedef signed char s8_t ;
typedef unsigned char u8_t;
typedef unsigned short u16_t; //WORD
typedef int s32_t;
typedef unsigned int u32_t;
#endif