新闻  |   论坛  |   博客  |   在线研讨会
单片机与RS232串口通信C51程序
szyth | 2008-08-15 10:54:05    阅读:1836   发布文章

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

/*************************************************************************/
#i nclude "iom16v.h"
#i nclude<macros.h>
#define baud 9600     //波特率
#define fosc 8000000  //晶振8MHZ 
/************************* 初始化函数**********************/
void USART_Init(void)
{

  /*设置波特率*/
  //UBRR=51;
  //UBRRH=(unsigned char)(baud>>8);
 // UBRRL=(unsigned char)(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位)*********************/

void USART_Transmit(unsigned char data)
{
  /*等待发送缓冲器为空*/
  while(!(UCSRA&(1<<UDRE)))   //UDRE为时缓冲器为空
  ;
  /*将数据放入缓冲器,发送数据*/
  UDR=data;
}
/********************数据接受函数(5~8位)*********************/
unsigned char USART_Receive(void)
{
  /*等待接受数据*/
  while(!(UCSRA&(1<<RXC)))  //接受缓冲器中有未读出的数据时RXC置位,否则清零
         ;
  /*从缓冲器中获取并返回数据*/
  return UDR;
}
/********************字符串发送函数(不含回车换行)***********************/
void USART_Transmit_string(unsigned char *s)
{
while (*s)
   {
   USART_Transmit(*s);
   s++;
   }
}
void main()
{
unsigned char i;
unsigned char *p1,*p2;
unsigned char a[]={" The  key  is:"};
unsigned char b[]={" Please press any key "};
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);
  }

  }
}

 

*博客内容为网友个人发布,仅代表博主个人观点,如有侵权请联系工作人员删除。

参与讨论
登录后参与讨论
推荐文章
最近访客