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.
Tool/software:
Hello,
C:\ti\c2000\C2000Ware_3_01_00_00\libraries\cla_stl\f28004x\cla_stl_lib_test_app
Cla_STL Library
the example code is working fine without any errors
but when integrated to My project it gives errors
My compiler settings are as follows
c Dialect set to c99 Still the warning says c89
The F28004x STLs are written to work with EABI, not COFF, so that may be part of the issue. Are you able to migrate your project to EABI or do you have to use COFF? Have you also set --cla_support=cla2 in your compiler options?
Whitney
the F28004x STLs it is working with COFF
and the --cla_support is set to cla2 in my project and my Project is set to COFF
There's a mismatch between the General -> Output format setting and the actual compiler options in that example project. If you look at the compiler command, you'll see " --abi=eabi" so it really is doing an EABI build.
Whitney