FOC Implementation for putting multirotor motors in robots

Dependencies:   FastPWM3 mbed

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers FastMath.cpp Source File

FastMath.cpp

00001 #include "FastMath.h"
00002 #include "LUT.h"
00003 
00004 const float Multiplier = 81.4873308631f;
00005 
00006 float FastMath::FastSin(float theta){
00007     if (theta < 0.0f) theta += 6.28318530718f;
00008     if (theta >= 6.28318530718f) theta -= 6.28318530718f;    
00009     return SinTable[(int) (Multiplier*theta)] ;
00010     }
00011     
00012 float FastMath::FastCos(float theta){
00013     return FastSin(1.57079632679f - theta);
00014     }