Hi,
I am trying to compute FFT of a sine wave given as an input to C6713 DSK but I don't know which FFT program should I use to do so. I also downloaded C67xDSPLIB functions and there I found so many FFT programs in the support folder but not sure which one will full fill my requirement.
Below is the part of program which is sampling input signal and storing in the buffer of size 1024 now I need to compute FFT on this 1024 points of data.
interrupt void c_int11() //interrupt service routine
{
output_sample((short)input_sample());//input/output data
buffer[i] =((short)input_sample()); //store data in buffer
i++; //increment buffer index
if (i==BUFFER_SIZE) i = 0; //reinit index if buffer full
return; //return from ISR
}
Can any one of please explain me which FFT program from the DSPLIB folder could be used to perform FFT ? How can I use this buffer's value as an input to to FFT function ?
Please guys help me out.
BR,
BS