您的位置:首页单片机AVR单片机
内容搜索:
阅读内容
背景:#EDF0F5 #FAFBE6 #FFF2E2 #FDE6E0 #F3FFE1 #DAFAF3 #EAEAEF 默认  

AVR串口查询模式程序实例

[日期:2008-04-11 ] [来源:网络 作者:佚名] [字体: (投递新闻)

* Code adapted from Atmel AVR Application Note AVR306
* Polled mode driver for UART, this is the similar to the
* library default putchar() and getchar() in ICCAVR
*/
#include <io8515.h>
#include <macros.h>
#include "uart.h"

/* initialize UART */
void InitUART( unsigned char baudrate )
{
UBRR = baudrate; /* set the baud rate */
UCR = BIT(RXEN) | BIT(TXEN); /* enable UART receiver and transmitter */
}

/* Read and write functions */
unsigned char ReceiveByte( void )
{
while ( !(USR & (1<<RXC)) ) /* wait for incomming data */
; /* return the data */
return UDR;
}

void TransmitByte( unsigned char data )
{
while ( !(USR & (1<<UDRE)) )
; /* wait for empty transmit buffer */
UDR = data; /* start transmittion */
}

#ifdef TEST

/* main - a simple test program*/
void main( void )
{
InitUART( 11 ); /* set the baudrate to 19,200 bps using a
3.6864MHz crystal */
while ( 1 ) /* forever */
{
TransmitByte( ReceiveByte() ); /* echo the received character */
}
}
#endif

 

阅读:
录入:JETTA

推荐 】 【 打印
本文评论
      全部评论
发表评论


点评: 字数
姓名:
赞助商广告