Alvee Ahmed
/
Hobbyking_Cheetah_Compact_DRV8323_14bit
customizing code for Aliexpress 14 bit version with MA702
FastMath/FastMath.cpp@52:af0f52e2ecda, 2020-11-10 (annotated)
- Committer:
- ahmed_lv
- Date:
- Tue Nov 10 07:43:56 2020 +0000
- Revision:
- 52:af0f52e2ecda
- Parent:
- 20:bf9ea5125d52
renamed count to countt and added mbed official library
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
benkatz | 0:4e1c4df6aabd | 1 | #include "FastMath.h" |
benkatz | 0:4e1c4df6aabd | 2 | #include "LUT.h" |
benkatz | 0:4e1c4df6aabd | 3 | |
benkatz | 0:4e1c4df6aabd | 4 | const float Multiplier = 81.4873308631f; |
benkatz | 0:4e1c4df6aabd | 5 | |
benkatz | 0:4e1c4df6aabd | 6 | float FastMath::FastSin(float theta){ |
benkatz | 20:bf9ea5125d52 | 7 | while (theta < 0.0f) theta += 6.28318530718f; |
benkatz | 20:bf9ea5125d52 | 8 | while (theta >= 6.28318530718f) theta -= 6.28318530718f; |
benkatz | 0:4e1c4df6aabd | 9 | return SinTable[(int) (Multiplier*theta)] ; |
benkatz | 0:4e1c4df6aabd | 10 | } |
benkatz | 0:4e1c4df6aabd | 11 | |
benkatz | 0:4e1c4df6aabd | 12 | float FastMath::FastCos(float theta){ |
benkatz | 0:4e1c4df6aabd | 13 | return FastSin(1.57079632679f - theta); |
benkatz | 0:4e1c4df6aabd | 14 | } |