From 3b10a3663f214eddf2e32077c3529765e1246a1f Mon Sep 17 00:00:00 2001 From: Vladislav P Date: Thu, 29 Dec 2022 00:29:42 +0300 Subject: [PATCH] Allow connection of more than 1 signal conditioner to a signal source Signed-off-by: Vladislav P --- src/core/receiver/gnss_flowgraph.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/receiver/gnss_flowgraph.cc b/src/core/receiver/gnss_flowgraph.cc index a4b177acc..00eb0f37c 100644 --- a/src/core/receiver/gnss_flowgraph.cc +++ b/src/core/receiver/gnss_flowgraph.cc @@ -966,7 +966,7 @@ int GNSSFlowgraph::connect_signal_sources_to_signal_conditioners() } else { - if (j == 0) + if (j == 0 || !src->get_right_block(j)) { // RF_channel 0 backward compatibility with single channel sources LOG(INFO) << "connecting sig_source_ " << i << " stream " << 0 << " to conditioner " << signal_conditioner_ID;