您当前的位置:五五电子网电子知识单片机-工控设备AVR单片机AVR串口查询模式程序实例 正文
AVR串口查询模式程序实例

AVR串口查询模式程序实例

点击数:7284 次   录入时间:03-04 11:36:20   整理:http://www.55dianzi.com   AVR单片机

* 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

 




本文关键字:程序  AVR单片机单片机-工控设备 - AVR单片机

《AVR串口查询模式程序实例》相关文章>>>