⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 type.h

📁 基于OMAP的UART驱动和测试程序
💻 H
字号:
/*

*/

#ifndef	__TYPE_H__
#define	__TYPE_H__

typedef     unsigned short  BIT16;
typedef     unsigned short  WORD;
typedef     unsigned short  UINT16;
typedef     unsigned char   BYTE;
typedef     unsigned int    UINT32;
typedef     int             INT32;     

typedef     signed char       s8;
typedef     unsigned char     u8;

typedef     signed short      s16;
typedef     unsigned short    u16;

typedef     signed int        s32;
typedef     unsigned int      u32;

typedef     unsigned char   UWORD8;
typedef     unsigned long   UWORD32;
typedef     unsigned short  UWORD16;

#define    TRUE    1
#define    FALSE   0

typedef enum  
{
    False = 0, 
    True  = 1 
} BOOL;

void Delay(int Dtime);

#endif

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -