Hello, everyone! I recently study the implementation for very large FFT of signals in Multicore DSP (C6678) and read the program that was distributed by the Texas Instruments. In the program, I ran into some problems of understanding the basic APIs that were used for the algorithms, for example,
void transpose_2Cols_rowsX8_cplxMatrix_sa ( float *pIn, float *pOut, Uint32 rows );
void DSPF_sp_radix4_fftSPxSP( Uint32 n, float *pIn, float *pTwiddle, float *pOut, Uint32 log4NMinus1 );
void transpose_2Rows_8XCols_cplxMatrix_sa ( float *pIn, float *pOut, Uint32 cols );
........
There are many such that APIs that I don't know what the arguments in it stand for, and the result of it means. Could anyone show me how to look up these APIs, or maybe there is API guide of the DSP for CCv5? Please tell me where to find the references guide of these APIs? Thank you very much!!!!
By the way, there is not any reference in the dsplib _c66x_3_1_1_1 packages........