Hi freaks,
I have simple program for xmega 128A4U. I want to use function pow(), from math.h.
/simply/
# include
and in main() procedure
double temp;
double i;
...
temp = pow(16, i);
...
- I get error message:
Error 1 Disabling relaxation: it will not work with multiple definitions 1 1 ...
When I write:
temp = pow(16, 2) - compiling is OK.
When I remove line
temp = pow(16, i); - Compiling is OK too.
Any idea ?
(AVR Studio 6.1.2730, Win 8, 64Bit)