以下代码:arm_cfft_radix4_f32(&scfft,fft_inputbuf); //FFT计算(基4)
HALL版本资料介绍FFT算法中N的长度有64/256/1024/4096,我现在想扩展为N=16384,
调试程序执行到此处
arm_cfft_radix4_f32(&scfft,fft_inputbuf);
就进入
void HardFault_Handler(void)
{
/* Go to infinite loop when Hard Fault exception occurs */
while (1)
{
}
}
是不是以上基4函数不支持N=16384?还是其它有什么问题,我也刚开始使用SDRAM,担心有些步骤没有配置好。
友情提示: 此问题已得到解决,问题已经关闭,关闭后问题禁止继续编辑,回答。
这个函数不推荐使用。
/**
* @details
* @brief Processing function for the floating-point Radix-4 CFFT/CIFFT.
* @deprecated Do not use this function. It has been superseded by ef arm_cfft_f32 and will be removed
* in the future.
* @param[in] *S points to an instance of the floating-point Radix-4 CFFT/CIFFT structure.
* @param[in, out] *pSrc points to the complex data buffer of size <code>2*fftLen</code>. Processing occurs in-place.
* @return none.
*/
一周热门 更多>