Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependencies: mbed Hobbyking_Cheetah FastPWM3
FastMath/FastMath.h@55:d57335792cb7, 2022-05-10 (annotated)
- Committer:
- qiudehua
- Date:
- Tue May 10 02:10:43 2022 +0000
- Revision:
- 55:d57335792cb7
- Parent:
- 0:4e1c4df6aabd
GT_MOTOR_24NM_V03
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
benkatz | 0:4e1c4df6aabd | 1 | #ifndef __FASTMATH_H |
benkatz | 0:4e1c4df6aabd | 2 | #define __FASTMATH_H |
benkatz | 0:4e1c4df6aabd | 3 | |
benkatz | 0:4e1c4df6aabd | 4 | #include "LUT.h" |
benkatz | 0:4e1c4df6aabd | 5 | |
benkatz | 0:4e1c4df6aabd | 6 | namespace FastMath{ |
benkatz | 0:4e1c4df6aabd | 7 | float FastSin(float theta); |
benkatz | 0:4e1c4df6aabd | 8 | float FastCos(float theta); |
benkatz | 0:4e1c4df6aabd | 9 | }; |
benkatz | 0:4e1c4df6aabd | 10 | |
benkatz | 0:4e1c4df6aabd | 11 | #endif |