I'm trying to use some of the functions that are written in the arm_math.h file, but am encountering some problems.
Although "arm_mult_q31(A,B,C,8);" works to multiply two arrays of 8 values together, this doesn't seem to work for "arm_add_q31(A,B,C,8);". Although it's being described in the same file as "arm_mult_q31(.. , .. , .. , ..)", the add functions returns an error, telling me it ain't there..
I've added "#include "arm_math.h" to the local data, which seems to load (I see no errors), but somehow I still cannot use these functions..
Can anyone tell me how to make use of these math functions? it seems to me that it would be really helpful to use on tables and might be lower on cpu..