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.
when I use IAR to compile the code which download from your Official website,IAR project was built by myself. after compile it notice wrong like below
Error[e46]: Undefined external "_IQ15mpy" referred in DualRaySmokeAFE_HAL_AFE_FR235x_SACL3 ( E:\working\project\DualRayFR2355\si\Debug\Obj\
DualRaySmokeAFE_HAL_AFE_FR235x_SACL3.r43 )
Error[e46]: Undefined external "_IQ15div" referred in DualRaySmokeAFE_HAL_AFE_FR235x_SACL3 ( E:\working\project\DualRayFR2355\si\Debug\Obj\
DualRaySmokeAFE_HAL_AFE_FR235x_SACL3.r43 )
Error while running Linker
when I mask the two lines code,the compile result is OK
tempC = _IQ15mpy((_IQ15(ADCData) - calib_30C) , _IQ15(105-30));
tempC = _IQ15div( tempC , (calib_105C - calib_30C) );
I saw the library code is “IQmathLib.a”, I doubt it only use by CCS Compiler,how to use this library to IAR built success?