Quote:
|
Originally Posted by revolution1737
I have tried Kevin Watson's trig code with the eeprom, a cordic approach (team 226's code i think), and the default sin function in math.h and every time I come out with a wrong value when I print. I usually get 16512 or 0. I have tried switching from radians to degrees. Am I just getting unlucky or is there something I'm missing?
Code:
float meh;
angle = sin(3.14);
printf("the angle is = %d\r\n",meh );
|
Stupid me
Code:
float angle;
angle = sin(3.14);
printf("the angle is = %d\r\n",angle );
[/quote]
There, I think...