C++11 chrono drop in replacement that adds the function now based on xtimer/timex. More...
C++11 chrono drop in replacement that adds the function now based on xtimer/timex.
Definition in file chrono.hpp.
Go to the source code of this file.
Data Structures | |
class | riot::time_point |
A time point for timed wait, as clocks from the standard are not available on RIOT. More... | |
Functions | |
time_point | riot::now () |
Returns the current time saved in a time point. More... | |
bool | riot::operator< (const time_point &lhs, const time_point &rhs) |
Compares two timepoints. | |
bool | riot::operator> (const time_point &lhs, const time_point &rhs) |
Compares two timepoints. | |
bool | riot::operator<= (const time_point &lhs, const time_point &rhs) |
Compares two timepoints. | |
bool | riot::operator>= (const time_point &lhs, const time_point &rhs) |
Compare two timepoints. | |
|
inline |
Returns the current time saved in a time point.
Definition at line 107 of file chrono.hpp.