Hi all,
I am calculating Real FFT and Real IFFT with the help of VCU2.
Device: TMS320F28377D
There are saperate examples given for FFT and IFFT.
What i am doing is
step 1) Take a real signal in timed domain
step2) Calculate RFFT with VCU instructuions
Step3) Calculate IRFFT
Details:
Step2)
CFFT.init(handleCFFT);
CFFT.run(handleCFFT);
CFFT_unpack(handleCFFT);
step3)
CFFT_pack(handleCFFT);
CFFT.run(handleCFFT);
CFFT_conjugate(handleCFFT->pOutBuffer, handleCFFT->nSamples);
But there is some issue with the scaling,
I get the output scaled down. (The scaling factor is approximately 200 times.)
What should i do?