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

📄 datatype.h

📁 基于单片机avr的led,串口模块的编程代码。
💻 H
字号:
/**********************************************************************
* 文件名: DATATYPE.h                                                  *
* 功能:一些关键字的定义        									  *
**********************************************************************/

#ifndef _DATATYPE_H_               /* avoid being incude more than once */
#define _DATATYPE_H_

/************************************************
 *Macros             segment                    *
 ***********************************************/
#ifndef NULL
#define NULL  0
#endif

#ifndef FALSE                            
#define FALSE 0
#endif

#ifndef TRUE
#define TRUE  1
#endif

#ifndef uchar
#define uchar unsigned char
#endif

#endif

/******************************************************************************
 * End of Entire File                                                         *
 *****************************************************************************/

⌨️ 快捷键说明

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