17 typedef std::chrono::microseconds::rep rep;
18 typedef std::chrono::microseconds::period period;
19 typedef std::chrono::microseconds duration;
20 typedef std::chrono::time_point<fpga_clock> time_point;
22 static fpga_clock::time_point now() noexcept;
23 static constexpr
bool is_steady =
true;
25 static constexpr fpga_clock::time_point epoch() {
return time_point(zero()); }
27 static constexpr fpga_clock::duration zero() {
return duration(0); }
29 static constexpr time_point min_time{
30 time_point(duration(std::numeric_limits<duration::rep>::min()))};
Definition: fpga_clock.h:15