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.

Does DSPLIB-C67x have the windowing function of FFT algorithm?

I'm using the DSPLIB_C67x to do the FFT Algo. I counldn't find the windowing function.

Does this LIB have the windowing function?

  • Hi Benz Liu,

    I've forwarded this to the DSPLib experts. Their feedback should be posted here.

    BR
    Tsvetolin Shulev
  • We don`t provide Windowing function in DSPLIB as the loops are simple enough to implement in C and the compiler does a good job provided you provide the correct _nassert and PRAGMA statements to guide the compiler.

    For example the 2k sample hanning window implementation would be :

    vecSize =2048;

    _nassert(vecSize % 8 == 0 ); // window size is always multiple of 8
    _nassert(vecSize > 0); // window size is always greater than 0
    _nassert((int)DataOut % 8 == 0); // data is double word aligned
    _nassert((int)DataInput % 8 == 0); // data is double word aligend
    
    #pragma MUST_ITERATE(64,8192,64);
    for ( i = 0; i < vecSize; i++) {
    double mult= 0.5 * (1 - cos(2*PI*i/2047));
    DataOut[i] = mult * DataInput[i];
    }
    


    BAsed on the implementation described here:
    en.wikipedia.org/.../Hann_function

    Add restricts to input and output data and the compiler should generate optimized data.

    Regards,
    Rahul

    PS: Look at path for least resistance to optimize DSP code:

    www.ti.com/.../sprabf2.pdf

  • hi dear i neeed support for old dsp tms320da708b(2006-2008) . i have i receiver amp that use that one but i found newone dsp tms320da788(2009-2011) by electric diagram pin by pin are the same so i will replace the tms320da708b by tms320da788e . any one know whats the difference beteween them::
  • Marcelo,

    Please don`t post unrelated part number selection question on an old e2e thread related to DSPLIB.

    We have replied to your query regarding performance audio part selection here:
    e2e.ti.com/.../2185794

    Regards,
    Rahul