| 99 | |
| 100 | /** @brief Convert microsecond count into timer ticks */ |
| 101 | template <uint64_t us> static constexpr uint64_t usToTicks() |
| 102 | { |
| 103 | return Micros::template timeToTicks<us>(); |
| 104 | } |
| 105 | |
| 106 | /** @brief Convert microsecond count into timer ticks */ |
| 107 | static TickType usToTicks(TimeType time) |