ppdatar.h

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

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

#ifndef	_PPDATAR_H 		// 防止PPDataT.h被重复引用

#define	_PPDATAR_H

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

#define uchar unsigned char
#define uint unsigned int

/* 握手信号宏定义 */
#define CALL 0x24		// 主机呼叫
#define BUSY 0x15		// 从机忙
#define OK 0x00			// 从机准备好
#define SUCC 0x2A		// 接收成功
#define ERR 0xF0		// 接收错误

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

uchar buf[MAXLEN];

#endif

⌨️ 快捷键说明

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