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

📄 def.h

📁 ucos在三星s3c4419B上的移植
💻 H
字号:
//定义S3C441B0X中要用的数据类型
//U32,U16,U8;S32,S16,S8;TRUE,FALSE;OK,FAIL;FileEnd,NotEnd

#ifndef U32
#define U32 unsigned int
#endif

#ifndef U16
#define U16 unsigned short
#endif

#ifndef U8
#define U8  unsigned char
#endif

#ifndef S32
#define S32 int
#endif

#ifndef S16
#define S16 short
#endif

#ifndef S8
#define	S8  char
#endif

#ifndef TRUE
#define TRUE 	1
#endif

#ifndef TRUE
#define FALSE 	0
#endif

#ifndef TRUE
#define OK		1
#endif

#ifndef TRUE
#define FAIL	0
#endif

#ifndef TRUE
#define FileEnd	1
#endif

#ifndef TRUE
#define	NotEnd	0
#endif

⌨️ 快捷键说明

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