Comment by ppuru23:
this is purushottam,training at Trii Technosolution pvt ltd on sunday  
batch.My sir is Hardik shah
I am working on uniboard1.1 version RS232 protocol  & program is written on  
window.
while compiling the program i.e written in winAVR20080402rc1 ,make clean it  
compiles but when "make all" is clicked it shows an error: "no rule to make  
target 'Main_led.elf",needed by 'elf'.
MY Program is ::::
#include<avr/io.h>
#define LEDPORTDIR DDRC
#define LEDPORTPORT PORTC
void LED_Init(void)
{
	LEDPORTDIR  = 0xFF;
	LEDPORTC   =0xFF;
}
int main(void)
{
   volatile unsigned char idelay;
   volatile unsigned int idelay;
   LED_Init();
   while(1)
   {
	for(idelay=0;idelay<10;idelay++)
		for(jdelay=0;jdelay<60000;jdelay++);
		
	LEDPORT = LEDPORT ^ 0xFF;
   }
}
please let me know the error..
2)what is the use of parity bit ,when transmitting a data?
3)what is the differece between UART & TTL?
4) C programming normally start from int main(),but in embedded C void  
main(void) is used ? please let me know about this
For more information:
http://code.google.com/p/uniboard/wiki/TODO