Hi,
I tried to integrate ADC using the example from the installation example_adcDisplau.c
When i run the build, it is always stuck in the below while loop, though i changed the SCI pins to Tx and Rx.
Please provide me the proper example or configuration file to get start with.
void sciDisplayText(sciBASE_t *sci, uint8 *text,uint32 length)
{
while(length--)
{
while ((sci->FLR & 0x4) == 4); /* wait until busy */
sciSendByte(sci,*text++); /* send out text */
};
}
Regards,
Somesh