* @brief Obtain the actual Clock time by converting tick value * @retval TimeType */
| 530 | * @retval TimeType |
| 531 | */ |
| 532 | static constexpr uint64_t clockTime() |
| 533 | { |
| 534 | return round_ce(double(ticks()) * TicksPerUnit::den / TicksPerUnit::num); |
| 535 | } |
| 536 | |
| 537 | /** |
| 538 | * @brief Obtain the time in a different set of units |
no test coverage detected