一、定义变量
/**********************
myM485 485双机通信例程测试
型号:STC15F2K60S2 主频:11.0592MHz
************************/
#include <STC15F2K60S2.H>
#include <intrins.h>
/*---------宏定义---------*/
#define uint unsigned int
#define uchar unsigned char
#define ulong unsigned long
#define cstUart2Ri 0x01 //接收中断请求标志位
#define cstUart2Ti 0x02 //发送中断请求标志位
#define cstNoneParity 0 //无校验
#define PARITYBIT cstNoneParity //定义校验位
/*串口波特率相关*/
#define cstFosc 11059200L //系统时钟频率
#define cstBaud2 9600 //串口波特率
#define cstT2HL (65536-(cstFosc/4/cstBaud2)) //定时器初始时间
/*---------引脚别名定义---------*/
sbit sbtKey1 = P3 ^ 2 ; //启动发送
sbit sbtKey2 = P3 ^ 3 ; //数字减少
sbit