In this tutorial I am going to show you how to receive a string through UART. In this program we are going to make use of the previous function which were written for receiving the character through UART. Don't forget to put NULL character at the end of the string.....
#include<avr/io.h>
void UART1_Init()
{
//set baud rate = 9600 bps
UBRR1H = 0x00;
UBRR1L = 103; //0x67
//set 1 stop bit, no parity bit and 8 bit charachter size
UCSR1C = 0x06; //(1 << UCSZ1)|(1 << UCSZ0)
//enable transmission and reception
UCSR1B = 0x18; //(1 << RXEN)|(1 << TXEN)
}
//Transmit character through UART
void UART1_Tx_Char(unsigned char data){
//put the data to be transmitted...