diff options
Diffstat (limited to 'host')
-rw-r--r-- | host/lib/rfnoc/radio_control_impl.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/host/lib/rfnoc/radio_control_impl.cpp b/host/lib/rfnoc/radio_control_impl.cpp index 6ca8419d0..0ea24fc60 100644 --- a/host/lib/rfnoc/radio_control_impl.cpp +++ b/host/lib/rfnoc/radio_control_impl.cpp @@ -314,7 +314,9 @@ uint64_t radio_control_impl::get_ticks_now() if (_fpga_compat < 1) { return get_mb_controller()->get_timekeeper(0)->get_ticks_now(); } - return regs().peek64(regmap::REG_TIME_LO); + // Applying the command time here allows for testing of timed commands, + // but all register accesses should use the command time by default. + return regs().peek64(regmap::REG_TIME_LO, get_command_time(0)); } uhd::time_spec_t radio_control_impl::get_time_now() |