aboutsummaryrefslogtreecommitdiffstats
path: root/host/lib/rfnoc/block_ctrl_base.cpp
diff options
context:
space:
mode:
authorMartin Braun <martin.braun@ettus.com>2017-04-13 15:33:03 -0700
committerMartin Braun <martin.braun@ettus.com>2017-04-13 15:33:03 -0700
commit2790b51f3072b5ad5e3a5c4921a84f460096f92d (patch)
treec91809e9b289bbcb62c156d0f1af9f66c01d3f8c /host/lib/rfnoc/block_ctrl_base.cpp
parent068de67366777322a7a132c4739bee9889c2bf19 (diff)
parentfae9468c3a2c00c4390a50679b5ae176c5f9a2a5 (diff)
downloaduhd-2790b51f3072b5ad5e3a5c4921a84f460096f92d.tar.gz
uhd-2790b51f3072b5ad5e3a5c4921a84f460096f92d.tar.bz2
uhd-2790b51f3072b5ad5e3a5c4921a84f460096f92d.zip
Merge branch 'maint'
Diffstat (limited to 'host/lib/rfnoc/block_ctrl_base.cpp')
-rw-r--r--host/lib/rfnoc/block_ctrl_base.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/host/lib/rfnoc/block_ctrl_base.cpp b/host/lib/rfnoc/block_ctrl_base.cpp
index efd723fcb..e9d6c0030 100644
--- a/host/lib/rfnoc/block_ctrl_base.cpp
+++ b/host/lib/rfnoc/block_ctrl_base.cpp
@@ -354,6 +354,7 @@ void block_ctrl_base::set_command_time(
}
iface_sptr->set_time(time_spec);
+ _set_command_time(time_spec, port);
}
time_spec_t block_ctrl_base::get_command_time(
@@ -581,4 +582,8 @@ void block_ctrl_base::_clear(const size_t port)
sr_write(SR_CLEAR_RX_FC, 0x00C1EA12, port); // 'CLEAR', but we can write anything, really
}
+void block_ctrl_base::_set_command_time(const time_spec_t & /*time_spec*/, const size_t /*port*/)
+{
+ UHD_RFNOC_BLOCK_TRACE() << "block_ctrl_base::_set_command_time() ";
+}
// vim: sw=4 et: