#include <TinyDebug.h>
#define cordic_1K 0x26DD3B6A
#define half_pi 0x6487ED51
#define MUL 1073741824.000000
#define CORDIC_NTAB 32
long int cordic_ctab [] = {0x3243F6A8, 0x1DAC6705, 0x0FADBAFC, 0x07F56EA6, 0x03FEAB76, 0x01FFD55B, 0x00FFFAAA,
0x007FFF55, 0x003FFFEA, 0x001FFFFD, 0x000FFFFF, 0x0007FFFF, 0x0003FFFF, 0x0001FFFF,
0x0000FFFF, 0x00007FFF, 0x00003FFF, 0x00001FFF, 0x00000FFF, 0x000007FF, 0x000003FF,
0x000001FF, 0x000000FF, 0x0000007F, 0x0000003F, 0x0000001F, 0x0000000F, 0x00000008,
0x00000004, 0x00000002, 0x00000001, 0x00000000, };
void cordic(long int theta, long int *s, long int *c, long int n)
{
long int k, d, tx, ty, tz;
long int x=cordic_1K,y=0,z=theta;
n = (n>CORDIC_NTAB) ? CORDIC_NTAB : n;
for (k=0; k<n; ++k)
{
d = z>>31;
//d = z>=0 ? 0 : -1;
tx = x - (((y>>k) ^ d) - d);
ty = y + (((x>>k) ^ d) - d);
tz = z - ((cordic_ctab[k] ^ d) - d);
x = tx; y = ty; z = tz;
}
*c = x; *s = y;
}
void setup() {
double p;
long int s,c;
long int i;
double ts,tc,tt;
//printf("coric-sin sin cordic-cos cos\n"); //these values should be nearly equal
//printf("-----------------------------------\n"); //these values should be nearly equal
for(i=0;i<360;i++)
{
p = (i/360.0)*M_PI/2;
cordic((p*MUL), &s, &c, 32); //use 32 iterations
ts=s/MUL;tc=c/MUL;
tt=ts/tc;
Debug.print(s/MUL,7);Debug.print(" ");
Debug.print(sin(p),7);Debug.print(" ");
Debug.print(c/MUL,7);Debug.print(" ");
Debug.print(cos(p),7);Debug.print(" ");
Debug.print(tt,7);Debug.print(" ");
Debug.println(tan(p),7);
//printf("%f : %f %f : %f %f : %f \n", s/MUL, sin(p), c/MUL, cos(p), tt, tan(p)); //these values should be nearly equal
}
}
void loop() {
// put your main code here, to run repeatedly:
}