Hi there,
i am using digital filters on the MSP432 and i want to know if the FPU unit is been used in all operations "+ - * and /"
So i went and look at the Disassembly code and saw in the filter code this:
1- Is the floating point only been used at the "VMLS.F32"? Why not at ADDS and the others?
All the variables are declared as "float" except for "j = a = uint8_t "
2- How do i know that my filter coefficient is in a single precision? I have declared a float array:
Do i need to put a "f" after those coefficients? Or does the Compiler knows that already by the definition float?


