单片机与RS232串口通信C51程序

来源:本站
导读:目前正在解读《单片机与RS232串口通信C51程序》的相关信息,《单片机与RS232串口通信C51程序》是由用户自行发布的知识型内容!下面请观看由(电工技术网 - www.9ddd.net)用户发布《单片机与RS232串口通信C51程序》的详细说明。

/*************************************************************************/
#include"iom16v.h" //请将# 替换成英文格式的#
#include<macros.h>
#definebaud9600//波特率
#definefosc8000000//晶振8MHZ
/*************************初始化函数**********************/
voidUSART_Init(void)
{

/*设置波特率*/
//UBRR=51;
//UBRRH=(unsignedchar)(baud>>8);
//UBRRL=(unsignedchar)(baud);
UBRRL=(fosc/16/baud-1)%256;
UBRRH=(fosc/16/baud-1)/256;
/*接收器发送器使能*/
UCSRB=(1<<RXEN)|(1<<TXEN);
/*设置数据帧格式*/
UCsrc="/blog/(1<";<URSEL)|(1<<USBS)|(3<<UCSZ0);//8个数据位,2个停止位
}
/********************数据发送函数(5~8位)*********************/

voidUSART_Transmit(unsignedchardata)
{
/*等待发送缓冲器为空*/
while(!(UCSRA&(1<<UDRE)))//UDRE为时缓冲器为空
;
/*将数据放入缓冲器,发送数据*/
UDR=data;
}
/********************数据接受函数(5~8位)*********************/
unsignedcharUSART_Receive(void)
{
/*等待接受数据*/
while(!(UCSRA&(1<<RXC)))//接受缓冲器中有未读出的数据时RXC置位,否则清零
;
/*从缓冲器中获取并返回数据*/
returnUDR;
}
/********************字符串发送函数(不含回车换行)***********************/
voidUSART_Transmit_string(unsignedchar*s)
{
while(*s)
{
USART_Transmit(*s);
s++;
}
}
voidmain()
{
unsignedchari;
unsignedchar*p1,*p2;
unsignedchara[]={"Thekeyis:"};
unsignedcharb[]={"Pleasepressanykey"};
p1=a;
p2=b;
USART_Init();
//USART_Transmit_string(p2);
//USART_Transmit(0x0d);//回车换行
//USART_Transmit(0x0a);
while(1)
{
i=USART_Receive();
if(i!=0)
{
//USART_Transmit_string(p1);
USART_Transmit(i);
//USART_Transmit(0x0d);//回车换行
//USART_Transmit(0x0a);
}

}
}
 

   /*************************************************************************/
#include"iom16v.h"
#include<macros.h>
#definebaud9600//波特率
#definefosc8000000//晶振8MHZ
/*************************初始化函数**********************/
voidUSART_Init(void)
{

/*设置波特率*/
//UBRR=51;
//UBRRH=(unsignedchar)(baud>>8);
//UBRRL=(unsignedchar)(baud);
UBRRL=(fosc/16/baud-1)%256;
UBRRH=(fosc/16/baud-1)/256;
/*接收器和发送器使能*/
UCSRB=(1<<RXEN)|(1<<TXEN);
/*设置数据帧格式*/
UCsrc="/blog/(1<";<URSEL)|(1<<USBS)|(3<<UCSZ0);//8个数据位,2个停止位
}
/********************数据发送函数(5~8位)*********************/

voidUSART_Transmit(unsignedchardata)
{
/*等待发送缓冲器为空*/
while(!(UCSRA&(1<<UDRE)))//UDRE为时缓冲器为空
;
/*将数据放入缓冲器,发送数据*/
UDR=data;
}
/********************数据接受函数(5~8位)*********************/
unsignedcharUSART_Receive(void)
{
/*等待接受数据*/
while(!(UCSRA&(1<<RXC)))//接受缓冲器中有未读出的数据时RXC置位,否则清零
;
/*从缓冲器中获取并返回数据*/
returnUDR;
}
/********************字符串发送函数(不含回车换行)***********************/
voidUSART_Transmit_string(unsignedchar*s)
{
while(*s)
{
USART_Transmit(*s);
s++;
}
}
voidmain()
{
unsignedchari;
unsignedchar*p1,*p2;
unsignedchara[]={"Thekeyis:"};
unsignedcharb[]={"Pleasepressanykey"};
p1=a;
p2=b;
USART_Init();
//USART_Transmit_string(p2);
//USART_Transmit(0x0d);//回车换行
//USART_Transmit(0x0a);
while(1)
{
i=USART_Receive();
if(i!=0)
{
//USART_Transmit_string(p1);
USART_Transmit(i);
//USART_Transmit(0x0d);//回车换行
//USART_Transmit(0x0a);
}

}
}

提醒:《单片机与RS232串口通信C51程序》最后刷新时间 2024-03-14 01:23:24,本站为公益型个人网站,仅供个人学习和记录信息,不进行任何商业性质的盈利。如果内容、图片资源失效或内容涉及侵权,请反馈至,我们会及时处理。本站只保证内容的可读性,无法保证真实性,《单片机与RS232串口通信C51程序》该内容的真实性请自行鉴别。