Hi, I have a need to calculate FFT on sensor data, using an LPC825 target, testing on 825Max devbrd.
I believe the right approach is CMSIS DSP Math libraries. I am able to get the source to compile in my project, but the flash requirement is 333% of that in the LPC825. Now trying to use 'headers' with link to compiled .a library, to make sure i can it to fit in the 825.
I followed the instructions:
- import that libraries into MCUXpresso IDE
- Run new project wizard, select the Library Headers:

The project complies initially, but when I add the code from this example
- https://arm-software.github.io/CMSIS_5/DSP/html/group__FrequencyBin.html
I get this error, which is not surprising, as I've not linked the library yet.

In settings I have these libraries in the new project by default:

And no libraries or lib search paths. So adding:
- libCMSIS_DSPLIB_CM0.a
- C:\nxp\MCUXpressoIDE_11.7.1_9221\ide\Examples\CMSIS_DSPLIB\CMSIS_DSPLIB_Latest\CMSIS_DSPLIB_CM0

Doesn't successfully compile:

I'm pulling my hair out. Please help before I am bald!! Thanks, Brent.