|
//这是一个单片机C51串口接收(中断)和发送例程,可以用来测试51单片机的中断接收
<B>//和查询发送,另外我觉得发送没有必要用中断,因为程序的开销是一样的</B>
<B>//程序编写: 龚建伟 webmaster@gjwtech.com</B>
<B>//技术主页:http://www.gjwtech.com</B>
<B>//您有这方面的问题可以和我讨论</B>
<B>#include</B> <reg51.h>
<B>#include</B> <string.h>
<B>#define</B> INBUF_LEN 4 <B>//数据长度</B>
<B>unsigned</B> <B>char</B> inbuf1[INBUF_LEN];
<B>unsigned</B> <B>char</B> checksum,count3;
bit read_flag=0;
<B>void</B> init_serialcomm(<B>void</B>)
{
SCON = 0x50; <B>//SCON: serail mode 1, 8-bit UART, enable ucvr</B>
TMOD |= 0x20; <B>//TMOD: timer 1, mode 2, 8-bit reload</B>
PCON |= 0x80; <B>//SMOD=1;</B>
TH1 = 0xF4; <B>//Baud:4800 fosc=11.0592MHz</B>
IE |= 0x90; <B>//Enable Serial Interrupt</B>
TR1 = 1; <B>// timer 1 run</B>
<B>// TI=1;</B>
}
<B>//向串口发送一个字符</B>
<B>void</B> send_char_com(<B>unsigned</B> <B>char</B> ch)
{
SBUF=ch;
<B>while</B>(TI==0);
TI=0;
}
<B>//向串口发送一个字符串,strlen为该字符串长度</B>
<B>void</B> send_string_com(<B>unsigned</B> <B>char</B> *str,<B>unsigned</B> <B>int</B> strlen)
{
<B>unsigned</B> <B>int</B> k=0;
<B>do</B>
{
send_char_com(*(str + k));
k++;
} <B>while</B>(k < strlen);
}
<B>//串口接收中断函数</B>
<B>void</B> serial () interrupt 4 using 3
{
<B>if</B>(RI)
{
<B>unsigned</B> <B>char</B> ch;
RI = 0;
ch=SBUF;
<B>if</B>(ch>127)
{
count3=0;
inbuf1[count3]=ch;
checksum= ch-128;
}
<B>else</B>
{
count3++;
inbuf1[count3]=ch;
checksum ^= ch;
<B>if</B>( (count3==(INBUF_LEN-1)) && (!checksum) )
{
read_flag=1; <B>//如果串口接收的数据达到INBUF_LEN个,且校验没错,</B>
<B>//就置位取数标志</B>
}
}
}
}
main()
{
init_serialcomm(); <B>//初始化串口</B>
<B>while</B>(1)
{
<B>if</B>(read_flag) <B>//如果取数标志已置位,就将读到的数从串口发出</B>
{
read_flag=0; <B>//取数标志清0</B>
send_string_com(inbuf1,INBUF_LEN);
}
}
}
|
|