Serial communication between arduino and avr atmega32


// Example 1 - Receiving single characters

char receivedChar;
boolean newData = false;

#include <LiquidCrystal.h>
LiquidCrystal lcd(8, 9, 4, 5, 6, 7); // select the pins used on the LCD panel

void setup() {
Serial.begin(9600);
Serial1.begin(9600);
Serial.println("");
}

void loop() {
recvOneChar();
showNewData();
}

void recvOneChar() {
if (Serial1.available() > 0) {
receivedChar = Serial1.read();
lcd.print(receivedChar);
newData = true;
}
}

void showNewData() {
if (newData == true) {
Serial.print("This just in ... ");
Serial.println(receivedChar);
lcd.setCursor(10,1);
newData = false;
}
}

this is my Arduino skatch.

and this is my codevison code in c for the atmega32 board.

#include <mega32a.h>
#include <io.h>
//header to enable data flow control over pins
#define F_CPU 8000000UL
//telling controller crystal frequency attached
#include <delay.h>
//header to enable delay function in program
int UBBRValue = 6;//AS described before setting baud rate (9600)
void main(void)
{
                DDRD =0b11111110;// 1 << PIND1;//pin1 of portD as OUTPUT
                DDRA =0b00000000;// ~(1 << PIND0);//pin0 of portD as INPUT
                PORTC=0b11111111;// 1 << PIND0;
                PORTC=0;
                
 
                //Put the upper part of the baud number here (bits 8 to 11)
                UBRRH = (unsigned char) (UBBRValue >> 8);
 
                //Put the remaining part of the baud number here
                UBRRL = (unsigned char) UBBRValue;
 
                //Enable the receiver and transmitter
                UCSRB = (1 << RXEN) | (1 << TXEN);
 
                //Set 2 stop bits and data bit length is 8-bit
                UCSRC = (1 << USBS) | (3 << UCSZ0);
 
                while (1)
                {
                                if (PINA.0==0)//once button is pressed
                                {
                                               
                                    while (! (UCSRA & (1 << UDRE)) );
                                     {
                                      UDR = 0b11110000;//once transmitter is ready sent eight bit data
                                     }
                                                           
                                               
                                                delay_ms(220);
                                }
                                PORTC.7=~PORTC.7;
                                delay_ms(200);
                    }
                    }  

So my AVR  board only consist of atmega32 and a few Leds.

I did changed the serial0 to serial 1 and conected that to Arduino.This was help full but dont receive any thing.
In the serial monitor I conteniusly receive the message:This just in ...