Part Number: TMS320F28377S
I used TMS320F28379DEVM to do below test
define global variables
float B = 524288.0;
float C = 0.02;
then execute below statement as below in while infinite loop , but find that B is always 524288.0
B = B+C;
I suspects it should be the rounding mode caused this issue, pls help explain this and give your suggestion to avoid the data truncated to get
un-expected output.
Thanks.