Page 1 of 1

Third Party DSP library

Posted: Wed Apr 14, 2021 11:00 am
by Vernon
I noted that the MODM7AE70 has hardware FP and DSP features. I have a TI "Launchpad" and one of the features is the ability to include CMSIS DSP library in their code composer studio. Has anyone ever included this in the Netburner IDE? Any instructions for doing this? Does the provided compiler use the hardware floating point? This would support the use of the arm_math.h header file.

Re: Third Party DSP library

Posted: Wed Apr 14, 2021 11:35 am
by pbreed
All of the compiler and library settings support hardware floating point as configured.
There are three build options:
softfp ->Use FPU hardware for calculations pass fp values in normal registers.
hard. ->Use PFU for calculations and pass parameters in fpu registers.
soft ->Do everything in S/W

The system usually defaults to softfp.
It can be change to hard.
Are you using eclipse or the command line?

Re: Third Party DSP library

Posted: Wed Apr 14, 2021 3:12 pm
by Vernon
Eclipse