From 2228c5c95c2c03bf4b453a14d38f43514603337b Mon Sep 17 00:00:00 2001 From: Martin Braun Date: Tue, 27 Sep 2016 14:44:18 -0700 Subject: Legacy: Improve awareness of tick rates in a streamer Prevents incorrect errors about conflicting tickrates in a streamer --- host/lib/rfnoc/tick_node_ctrl.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'host/lib/rfnoc/tick_node_ctrl.cpp') 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(); + std::vector< sptr > neighbouring_tick_nodes = find_downstream_node(true); { - std::vector< sptr > upstream_neighbouring_tick_nodes = find_upstream_node(); + std::vector< sptr > upstream_neighbouring_tick_nodes = find_upstream_node(true); neighbouring_tick_nodes.insert( neighbouring_tick_nodes.end(), upstream_neighbouring_tick_nodes.begin(), -- cgit v1.2.3