#define uchar unsigned char
#define uint unsigned int
sbit ring=P3^7
sbit CASE1=P2^0
sbit CASE2=P2^1
sbit CASE3=P2^2
sbit CASE4=P2^3
uchar se=0,re=0
uchar temp=0
void wait(uint cnt)
{
while(--cnt)
}
void send(uchar se)
{
SBUF=se //发送数据
while(TI == 0)
TI = 0
}
//串口接收程序
uchar receive(void)
{
re=SBUF //接收数据
while(RI==0)
RI=0
return re
}
//串口初始化
void sinti(void)
{
SCON = 0x50
TMOD |= 0x20
TH1 = 0xFD
TR1 = 1
EA= 1
ES= 1
}
void delay(int cnt)
{
while(--cnt)
}
//主程序
int main (void)
{
int i
sinti() //串口初始化程序
ring=1
while(1)
{
while (1)
{
if(CASE1==0)
{
send('a')
ring=0
break
}
if(CASE2==0)
{
send('b')
ring=0
break
}
if(CASE3==0)
{
send('c')
ring=0
break
}
if(CASE4==0)
{
send('d')
ring=0
break
}
}
if(ring==0)
{
wait(60000)
ring=1
}
for(i=0i<10000i++)
}
}
//串口中断程序
void UART_SER (void) interrupt 4 //串行中断服务程序
{
if(RI)//判断是接收中断产生
{
RI=0 //标志位清零
temp=SBUF
}
if(TI)//如果是发送标志位,清零
TI=0
}
要求用什么语言?------------------------------
网友“星心晨梦”的回答,是可以满足题目要求的。
我实验了,是成功的,没有任何错误。
楼主应该检查自己的电路、串口设置等等。
------------------------------
网友“星心晨梦”的回答,篇幅稍稍长了一些。
缩减一半就可以正常工作了,可读性更好一些。
建议看看下面的。
------------------------------
#include <AT89X51.h>
#include <intrins.h>
#define uchar unsigned char
#define uint unsigned int
//---------------------------------------------------
uchar idata trdata1[] = {
'W','E','L','C','O','M','E',' ','T','O',' ','C','H','I','N','A','!',0x0d,0x0a,0x00}
uchar idata trdata2[] = {
'M','Y',' ','N','A','M','E',' ','I','S',' ','L','I','M','I','N','G',0x0d,0x0a,0x00}
uchar idata trdata3[] = {
'Y','I','N','G','Y','O','N','G','K','E','X','U','E','X','U','E','Y','U','A','N',0x0d,0x0a,0x00}
uchar RxBuf[5], Rx_p, Rx_i, TX_p, Tx_i
//---------------------------------------------------
void UART_Init(void) //串口初始化
{
PCON = 0x00
SCON = 0x50//串口工作方式为1,允许接收.
TMOD = 0x20// T1 定时方式2
TH1 = 0xfd //波特率 9600bps @ fosc = 11.0592MHz
TL1 = 0xfd
TR1 = 1//启动T1
ES = 1 //开串口中断.
EA = 1 //开总中断.
}
//---------------------------------------------------
void main()
{
UART_Init()
Rx_p = 0
Rx_p = 2
while(1) {
if (Rx_p != 0) {
TX_p = Rx_p//字符串1 2 3
Tx_i = 0 //字符指针.
Rx_p = 0 //清零.
Rx_i = 0
TI = 1//启动发送中断.
} }
}
//---------------------------------------------------
void Uart_INT(void) interrupt 4 //串口中断函数
{
uchar Tcv = 0
if(RI) { //接收?.
RI = 0 //标志位清零.
RxBuf[Rx_i] = SBUF
if((RxBuf[Rx_i - 1] == 'g') &&(RxBuf[Rx_i] == 'o')) Rx_p = 1
if((RxBuf[Rx_i - 2] == 'w') &&(RxBuf[Rx_i - 1] == 'h') &&(RxBuf[Rx_i] == 'o')) Rx_p = 2
if((RxBuf[Rx_i - 3] == 'h') &&(RxBuf[Rx_i - 2] == 'o') &&(RxBuf[Rx_i - 1] == 'm') &&(RxBuf[Rx_i] == 'e')) Rx_p = 3
P1 = Rx_p //在P1显示收到的信息.
Rx_i++
Rx_i %= 5
}
else {
TI = 0
if (TX_p == 1) Tcv = trdata1[Tx_i] //取来待发字符.
if (TX_p == 2) Tcv = trdata2[Tx_i]
if (TX_p == 3) Tcv = trdata3[Tx_i]
if (Tcv != 0) {SBUF = Tcv Tx_i++} //不是0就发送.
}
}
//---------------------------------------------------
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)