Other Parts Discussed in Thread: TMS570LS3137
I have a while loop as follows:
notready=1;
while( notready );
notready gets modified by another thread. When debugging, the program stops at the while line and will never move on, even when notready gets changed to 0. (I can see the 0 value in the watch window). However, if I change it to the following:
while( notready==1 );
it works like a charm!
Any explanation from the CCS gurus?