{
SCI_Send(data);
}
} */
void main(void) {
/* put your own code here */
PLL_Init();
SCI_Init();
EnableInterrupts;
for(;;) {
uchar i;
for(i=0;i<10;i++)
{
SCI_Send(string[i]) ;
Delay();
}
// Delay();
//Send_String(0x55);
// Send_String(string);
// _FEED_COP(); /* feeds the dog */
} /* loop forever */
/* please make sure that you never leave main */
}