Tool/software: TI C/C++ Compiler
I have a 32bit signed integer. Example -
INT32 position_iq24;
I intend to convert it to a float using IQ_24 conversion. At the moment with my basic incorrect understanding, I am doing this.
Result_PositionValue = _IQ24toF((_iq24)position_iq24);
It is ofcourse generating incorrect results. Please help me understand this IQ conversion a little better. I did try to read the manuals but did not grasp the content clearly (my bad).
Thank you :)