Hi,
I have upgraded my TI RTOS, then the MWARE got upgraded from 2_00_01_23 to 2_10_01_38 and XDC from 03_30__03_47 to 3_30_05_60
after the upgrade, the following code is not working properly.
printf("\n\rPress 'b' \n\r");
ulnStartTick=Clock_getTicks();
do
{
ulnstatus = UARTUtils_deviceread(0,&ch,1);
if((ulnstatus == 1)&&((ch=='b')||(ch=='B')))
{
initiateparameter();
}
}while((Clock_getTicks()- ulnStartTick)<5000);
It has to wait for 5sec then should come out of loop, but after upgrade of TI RTOS it is not coming out of do while loop. Also I have set the baud rate as 9600 in my code but in Teraterm display is coming for baud rate 115200.
Thanks
Apoorva