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
tools.h
- Committer:
- megrootens
- Date:
- 2017-11-12
- Revision:
- 2:df0c6af898ac
- Parent:
- 0:caa8ee3bd882
- Child:
- 5:088917beb5e4
File content as of revision 2:df0c6af898ac:
// radians per degree const double kRadPerDeg = 3.1415926535 / 180; /** * Radians to degrees */ double rad2deg(double rad) { return rad / kRadPerDeg; } /** * Degrees to radians */ double deg2rad(double deg) { return deg * kRadPerDeg; }