Dear Sir,
We have devloped the project using keil amd TM4C129Xcnzad and its fine.
Now I am migrating entire project to CCS.
I have send the command from docklight(serial port terminal utility) and expect the below response from query.
When I keep debug point i am getting the response DHV2.59 where as remove breakpoint then not getting any response from query.
Baud rate is 9600.
The same project working in Keil compiler.
void send_version_HWACK(void)
{
pc_buff[0]='D';
pc_buff[1]='H';
pc_buff[2]='V';
pc_buff[3]='0';
pc_buff[4]='2';
pc_buff[5]='.';
pc_buff[6]='5';
pc_buff[7]='9';
pc_buff[8]='\r';
for (i=0;i<9;i++)
{
UARTSend(&pc_buff[i],1);
for (x=0;x<=20000;x++);
}
}
Is any issue with timing or delay?