Arduino: error: "abs" has not been declared in this area
I am working on an arduino library that needs abs () function:
#include <math.h>
normTransFreq1 = abs(1.0);
Error: 'abs' was not declared in this area
Since it is math.halready included in cpp, I am not at all sure how to fix this problem. The new arduino 1.5.2 installation did not help.
+2