Problems using fftw3 with STM32MP157f-dk2
Hello, I need to do FFT transforms of long signal traces, so using CMSIS DSP doesn't look possible because of the 4096 points limit. I tried to use fftw3 library (3.3.10). I built it using OpenSTLinux SDK from the Github source without problem. Here is configuration I used:
configure --host=arm-ostl-linux-gnueabi --enable-neon --enable-single --with-slow-timer
Library libfftw3f.a was built successfully and test app was also successfully linked with it. Here is relevant part of the test app code:
int fft_points = 131072;
When program runs, it crashes with "Segmentation fault (core dumped)" while trying to create first fft plan.
