您的位置 首页 报告

51单片机串口检测程序(C言语代码)

#i nclude reg51_STC.H#define uchar unsigned char#define uint unsigned int//————————-

#i nclude reg51_STC.H
#define uchar unsigned char
#define uint unsigned int

//————————————————————————–
//函数称号: UART_Init()
//函数功用: 串口初始化函数,在体系时钟为11.059MHZ时,设定串口波特率为9600bit/s
//其他阐明: 串口接纳中止答应,发送中止制止
//————————————————————————–

void UART_Init(void)
{
SCON = 0x50 ; //SCON: serail mode 1, 8-bit UART, enable ucvr
TMOD |= 0x20 ; //TMOD: timer 1, mode 2, 8-bit reload
PCON |= 0x80 ; //SMOD=1;
TH1 = 0xFA ; //Baud:9600 fosc=11.0592MHz
ES=1;
TR1 = 1 ; // timer 1 run
EA=1;
}


//————————————————————————–
//函数称号: main(void)
//函数功用: 主函数
//其他阐明: 无
//————————————————————————–

void main(void)
{
UART_Init();
while(1);
}


//————————————————————————–
//函数称号: Uart_SendData()
//函数功用: 串口发送一个字节的数据
//其他阐明: 此程序供中止调用
//————————————————————————–

void Uart_SendData(uchar dat)
{
SBUF=dat; //写SBUF,开端发送
while(TI==0); //等候发送
TI=0; //清发送标志位
}


//————————————————————————–
//函数称号: INT_UartRcv()
//函数功用: 串口接纳中止函数
//其他阐明: 无
//————————————————————————–

void INT_UartRcv(void) interrupt 4
{
uchar Rcv;
if(RI)
{
RI=0; //
Rcv=SBUF;
Uart_SendData(Rcv); //回来接纳数据,能够改为其他函数
}
}

NO。2

#i ncludereg52.h>
#i nclude string.h>
#define INBUF_LEN 4 //数据长度
unsigned char inbuf1[INBUF_LEN];
unsigned char checksum,count3;
bit read_flag= 0 ;
void init_serialcomm( void )
{
SCON = 0x50 ; //SCON: serail mode 1, 8-bit UART, enable ucvr
TMOD |= 0x20 ; //TMOD: timer 1, mode 2, 8-bit reload
PCON |= 0x80 ; //SMOD=1;
TH1 = 0xF4 ; //Baud:4800 fosc=11.0592MHz
IE |= 0x90 ; //Enable Serial Interrupt
TR1 = 1 ; // timer 1 run
EA=1;
}

//向串口发送一个字符

声明:本文内容来自网络转载或用户投稿,文章版权归原作者和原出处所有。文中观点,不代表本站立场。若有侵权请联系本站删除(kf@86ic.com)https://www.86ic.net/ceping/baogao/326385.html

为您推荐

联系我们

联系我们

在线咨询: QQ交谈

邮箱: kf@86ic.com

关注微信
微信扫一扫关注我们

微信扫一扫关注我们

返回顶部