Question
Problem with arm_rfft_q15 in STM32F407
Posted on February 06, 2014 at 08:41
Hi,
I have a problem in using arm_rfft_q15. When I use this instruction in my application, some of buffers in my application were changed. I defined all other variables globally. In my application, I want to perform 512-Point FFT conversion. Definitions and code are as below: //variables arm_rfft_instance_q15 S; arm_cfft_radix4_instance_q15 S_CFFT; signed short FFT_Input[1024]; signed short FFT_Output[512]; .. .. arm_rfft_init_q15(&S, &S_CFFT, 512, 0, 1); arm_rfft_q15(&S, FFT_Input, FFT_Output); .. ..