pmpdatat.h

来自「51.rar」· C头文件 代码 · 共 26 行

H
26
字号
/*****************************************/
/* Copyright (c) 2005, 通信工程学院      */
/* All rights reserved.                  */
/* 作    者:戴 佳						 */
/*****************************************/

#ifndef	_PMPDATAT_H 		// 防止PMPDataT.h被重复引用

#define	_PMPDATAT_H

#include <reg51.h>
#include <string.h>

#define uchar unsigned char
#define uint unsigned int

/* 握手信号宏定义 */
#define SUCC 0x2A		// 接收成功
#define ERR 0xF0		// 接收错误

#define MAXLEN 64    	// 缓冲区最大长度

uchar buf[MAXLEN];
uchar addr;

#endif

⌨️ 快捷键说明

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