This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

请问,DM6437和DM648 是否有TI提供的FFT库函数么?

Other Parts Discussed in Thread: SPRC265

请问大神们,DM6437和DM648 是否有TI提供的FFT库函数?有例子或者代码连接的,麻烦给一个了,拜谢!

  • http://www.ti.com.cn/tool/cn/sprc265?keyMatch=DSPLIB&tisearch=Search-CN

    其实不用看具体器件的。只要看器件里面的DSP用的是哪个核,这些库就都可以用。

  • 请问C64x+ DSPLIB 里面 void DSP_fft16x32(short * restrict w, int nx, int * restrict x, int * restrict y)这个函数具体是怎么用的?安装的库压缩包里也没有应用例子。

    我是用在DM6437上的,难道也是像下面C6713这样的 调用顺序么?

    tw_genr2fft(wd,N); // 产生旋转因子
    bit_rev(wd, N>>1); // 把系数倒置,为下面函数输入准备
    DSPF_sp_cfftr2_dit(xd, wd, N); //计算该FFT,需要先调用上面两个函数
    bit_rev(xd,N); //输出是倒置的,所以重新倒置为正常