R_serial () interrupt 4
        {
	   if(RI)
	      {
		 serialR = SBUF;
		 CompDataRx[count]= serial;
		 ++count;
		 RI=0;
		 
	       }
	   else
		 TI = 0;
	}

void main()
{
	while(1)
           {	     
	
	     SerialInit(9600);
	     SendCompAddress();
	     for(i=0; i<=255; i++)
               {
                 CompState = SerialReceive();
        
                 switch(CompState)
                   {
                    case 0x41:
                          count = 0;
                          while(count!=15);
                          ......
.................................

		   }

*** Thank You All for Help


