This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

TMS320C6652: error adding an assembler sa file to my project

Part Number: TMS320C6652

Hi Shankari,

I don't want to build the DSPLIB, I just want to include the DSPF_sp_ifftSPxSP.sa into my project.

here's my main():

/**
* main.c
*/
#include <c6x.h>

#include "DSPF_sp_ifftSPxSP.h"

#define FFT_LEN 8192 // complex values
#define FFT_RAD 4

float IFFT_Twid[2*FFT_LEN];
float InpBuf [2*FFT_LEN];
float OutBuf [2*FFT_LEN];

unsigned char brev[64];

int main(void)
{

DSPF_sp_ifftSPxSP (FFT_LEN, OutBuf, IFFT_Twid, InpBuf, brev, FFT_RAD, 0, FFT_LEN); // cyc=?/FFT_L=8k; DSPLIB src 3_4_0_0

return 0;
}

I included DSPF_sp_ifftSPxSP.sa by -> Add Files...

CCS does not build the project (error see above).

BR Gerold