Hello,
i am a student and new to DSP programming and need help. My exercise is to implement a fft on the C5509 with the TMS320C55x DSP Library. For introduction i am using a matlab-generated sinusoid, which i am loading into memory using Code Composer Studio. The fft is doing something with this vector, but the output doesn't make any sense. I guess there is something wrong with my data vector or with my arguments. I am also not sure if i got all the information in the TMS320C55x DSP Library Programmer’s Reference.
My sinusoid has 256 real-value samples, so my re-im interleaved matlab-file looks like this:
0x3333
0x0000
0x24C4
0x0000
0xFD94
0x0000
0xE238
0x0000
.....
(imaginary values = 0).
When calling the cfft (noscale), i am passing n = 256 (vector length). I am expecting 2 different frequencies, but the output is something similar to my input.
Is there any obvious error in my number format, vector, arguments?
Thanks a lot!
Regards,
Florian