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

📄 type.h

📁 winAVR编写的MEGA16内部EEPROM读写程序
💻 H
字号:
#ifndef _TYPE_H_
#define _TYPE_H_

#define UCHAR  unsigned char 
#define UINT   unsigned int
#define ULONG  unsigned long
#define BOOL   unsigned char

#define uchar  unsigned char 
#define uint   unsigned int
#define ulong  unsigned long
#define bool   unsigned char

#define true 1
#define false 0    

#define TRUE 1
#define FALSE 0    

#ifndef NULL
#define NULL 0  
#endif 

#ifndef null
#define null 0  
#endif 

#endif


⌨️ 快捷键说明

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