aboutsummaryrefslogtreecommitdiffstats
path: root/host/lib
diff options
context:
space:
mode:
authorMartin Braun <martin.braun@ettus.com>2016-09-27 14:44:18 -0700
committermbr0wn <martin.braun@ettus.com>2016-10-17 22:07:08 -0700
commit2228c5c95c2c03bf4b453a14d38f43514603337b (patch)
tree2dee011cf9c356a2f3a04537229005348c16a585 /host/lib
parent9e73914791be936216ea11eea9bd38061ef5f323 (diff)
downloaduhd-2228c5c95c2c03bf4b453a14d38f43514603337b.tar.gz
uhd-2228c5c95c2c03bf4b453a14d38f43514603337b.tar.bz2
uhd-2228c5c95c2c03bf4b453a14d38f43514603337b.zip
Legacy: Improve awareness of tick rates in a streamer
Prevents incorrect errors about conflicting tickrates in a streamer
Diffstat (limited to 'host/lib')
-rw-r--r--host/lib/rfnoc/tick_node_ctrl.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/host/lib/rfnoc/tick_node_ctrl.cpp b/host/lib/rfnoc/tick_node_ctrl.cpp
index fa5c7b6a1..5548194ae 100644
--- a/host/lib/rfnoc/tick_node_ctrl.cpp
+++ b/host/lib/rfnoc/tick_node_ctrl.cpp
@@ -37,9 +37,9 @@ double tick_node_ctrl::get_tick_rate(
std::set< node_ctrl_base::sptr > explored_nodes(_explored_nodes);
explored_nodes.insert(shared_from_this());
// Here, we need all up- and downstream nodes
- std::vector< sptr > neighbouring_tick_nodes = find_downstream_node<tick_node_ctrl>();
+ std::vector< sptr > neighbouring_tick_nodes = find_downstream_node<tick_node_ctrl>(true);
{
- std::vector< sptr > upstream_neighbouring_tick_nodes = find_upstream_node<tick_node_ctrl>();
+ std::vector< sptr > upstream_neighbouring_tick_nodes = find_upstream_node<tick_node_ctrl>(true);
neighbouring_tick_nodes.insert(
neighbouring_tick_nodes.end(),
upstream_neighbouring_tick_nodes.begin(),