C++11 chrono drop in replacement that adds the function now based on ztimer/timex. More...
C++11 chrono drop in replacement that adds the function now based on ztimer/timex.
Definition in file chrono.hpp.
Include dependency graph for chrono.hpp:
This graph shows which files directly or indirectly include this file: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... | |
Namespaces | |
| riot | |
| RIOT C++ namespace. | |
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. | |