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: USBHost USBHostXpad mbed-rtos mbed
utils.cpp
- Committer:
- hotwheelharry
- Date:
- 2014-11-13
- Revision:
- 0:79485480cd7e
- Child:
- 3:c1620db50a75
File content as of revision 0:79485480cd7e:
#include "utils.h"
double ghettoFloor(double d){
return double((long long)d);
}
double round(double d)
{
return ghettoFloor(d + 0.5);
}
