Hi,
I suppose it is okay to compute the exp function, it use software float library to compute the exp value.
For the CodeWarrior for MCU ver11.x tools, I use the following code, I can pass the compilation.
#include "math.h"
float f1,f2;
void main(void)
{
....
f1=1.0;
f2=exp(f1);
...
}
Pls have a try
BR
XiangJun Rong