Where to find the C28x fpu math.h documentation? For example, what is the description about function
float fmaf(float x, float y, float z);
Is there a function similar to fsat(float x, float max, float min)?
This thread has been locked.
If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.
The RTS function fma is specified in the C99 standard for ANSI C. An internet search on the term ansi c99 standard will give you links to standards documents. You can search for a description of any standard library function. You'll see that fma is the name for the double type variant of the function. The function fmaf does the same thing, but for the float type. There is no function named fsat.
Thanks and regards,
-George