Other Parts Discussed in Thread: TMS320C28346
Hi,
I am using TMS320C28346
When I write:
float f;
long long s64_dbg;
f = 2.6 * 2.0;
s64_dbg = f;
_______________ I get s64_dbg = 5 and that is ok
But when I write:
float f;
long long s64_dbg;
f = 200000000.6 * 2.0;
s64_dbg = f;
_______________ I get s64_dbg = 400000000 while I expecting to get 200000001
Anybody has a clue?