Best way to use CMSIS DSP with STM32H745 micro with CubeMX 6.0.0?
I want to use the CMSIS DSP library for doing some FFTs. I am planning to use a STM32H745 micro and am prototyping on a NUCLEO-144 (H745ZI-Q) board. It seems that CubeMX does not support adding the DSP library for the 745 micro, I am guessing because it has both an M7 and M4 core in it, which is confusing CubeMX. Adding the DSP library is an option for the similar, M7-only 743 micro (though, I tried making a project for a 743 for reference, and the resulting code did not work). I was able to copy files manually and use a function from the DSP library that way, but this did not survive regenerating the code.
Is there an easy way I can get the tools to cooperate and let me use the CMSIS DSP library? Does anyone know the correct #defines to use? I think I added ARM_MATH_CM7 and __FPU_PRESENT=1 to get it to compile.