Other Parts Discussed in Thread: C2000WARE
Tool/software: Code Composer Studio
There are the following questions when using C2000 TMS320F28377D . Can you help me, thank you!
In the Fast Fourier Transform (C28X-VCU-LIB-UG) of VCU-II, FFT data structure is defined as follows:
Typedef struct
{
Int16_t *pInBuffer;
Int16_t *pOutBuffer;
Const int16_t *pTwiddleFactors;
Int16_t nSamples;
Int16_t nStages;
Int16_t twiddleSkipStep;
Void (*init) (void *);
Void (*run) (void *);
}
_CFFT_Obj_
There are the following questions:
1. What is the data structure of the incoming pInBuffer when using CFFT? Is plural real number + imaginary number or other structure?
2.Is the data structure using pOutBuffer output the same as the input structure?
3. is there any other detailed information about the use of Lib?