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.

CCS: hwafft build error

Other Parts Discussed in Thread: TMS320C5505

Tool/software: Code Composer Studio

Hi,

I am using tms320c5505. It has an Hardware FFT Accelarator.

I got the hwafft_rom.asm, hwafft.asm and hwafft.h

I used a sample code given in TI documentation for FFT implementation.

But, I am not able to link .asm files to the project.

I feel .asm files will be converted to .obj after building. But, I cant see any of my .asm files being converted to .obj

Maybe because of this I am getting a [E0000]: Parse error when i buidl

Can u plz help me out

i have attached an error window

  • The compiler in CCS uses the file extension to know how to build a file.  If the file extension is .c, the file is expected to contain C code.  But your main.c file contains assembly code.  You need to change the file name from main.c to main.asm.  In CCS, right click on the file name and choose Rename.

    Thanks and regards,

    -George