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.
Hi. im using TMS320DM6437 evm board . want to use linear fft but when i try to debug program i take this below error. how can i did this correctly. Thanks.
"C:\DOCUME~1\ADMINI~1\LOCALS~1\Temp\0190810", ERROR! at line 149:
[E0004]
Absolute, well-defined integer value expected
.if __TI_EABI__
"C:\DOCUME~1\ADMINI~1\LOCALS~1\Temp\0190810", ERROR! at EOF: [E0300]
The following symbols are undefined:
2 Assembly Errors, No Assembly Warnings
__TI_EABI__
Hello Ayhan,
Is this one of of provide example code we provide or it is your customer board? If it is one of our provided, can you give me the project name so I can try?
Regards,
Viet
Hi Viet,
http://processors.wiki.ti.com/index.php/FFT_Implementation_With_No_Data_Scaling im trying to build this example. And also my fft implementation . i take same error in both of them.
Hi,
__TI_EABI__ is an indication of ELF format. You can find more information here.
http://processors.wiki.ti.com/index.php/C6000_EABI_Migration
You need to use COFF format with C64x DSPLIB.
The error indicates that the __TI_EABI__ flag is not defined. This may have been added to the code to allow the code to build in both ELF and COFF format. You can build that code in CCS by adding a define in the compile options.
__TI_EABI__ =0
OR right click on the .pjt file in CCS. select open for Editting and under ["Compiler" Settings: "Debug"] add
-d"__TI_EABI__=0" to the options
this should allow you to rebuild the code. Let us know if this resolved the issue you are facing.
Regards,
Rahul
Hi Rahul,
I had the same problem wit my project but after your suggestion the issue is resolved.
Regards
GP