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/TMS320F28335: TMS320F28335 and Code Composer Studio 7.3.0.00019

Part Number: TMS320F28335

Tool/software: Code Composer Studio

Hi

How to resolve the following  error  and I am attaching the my screenshot as well as.

error #16008-D: file "../Lib/IQmath.lib<IQ24cosPU.obj>" specifies ISA revision "C2800", which is not compatible with ISA revision "C28FPU32" specified in a previous file or on the command line

Thanks!

Regards,

Ram

  • The reason for this error is explained in this FAQ. In summary the options used to build the source files should be the same as the ones used to build the libraries that are linked to the project (both rts and IQmath libraries).

    For the F28335, the recommended options are -v28 and --float_support=fpu32. Make sure that your project is built with these options, and that you link in the IQmath_fpu32.lib instead of IQmath.lib.

  • Thank you for info