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: FastPWM MODSERIAL QEI mbed
Diff: tools.h
- Revision:
- 0:caa8ee3bd882
- Child:
- 2:df0c6af898ac
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/tools.h Sun Nov 12 00:14:05 2017 +0000 @@ -0,0 +1,10 @@ +const double kRadPerDeg = 3.1415926535 / 180; + +double rad2deg(double rad) +{ + return rad / kRadPerDeg; +} +double deg2rad(double deg) +{ + return deg * kRadPerDeg; +} \ No newline at end of file