2019-07-26 11:59 AM
I am currently working on switching my Keil workspaces to Atollic TrueSTUDIO.
I realized that my calculation cycle time in TrueSTUDIO is much longer than old workspace that is implemented in Keil.
I was using __sqrtf() function instead of sqrtf() function in my calculations. But I can not find this function in my math.h library. __sqrtf() intrinsic avoids the overhead of checking the input value and generates the VSQRT instruction directly instead of a call to sqrtf().
How do or should stay with Keil?
Thanks