From bdbfc3478b62d258abbfbc84c03e1d770e30c86d Mon Sep 17 00:00:00 2001 From: Ismael Gomez Date: Tue, 25 Jan 2022 19:44:27 +0100 Subject: [PATCH] srsue,phy: do not reestablish if configured more carriers than existing --- srsue/src/phy/phy.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srsue/src/phy/phy.cc b/srsue/src/phy/phy.cc index 3b5c7a3f9..9fca03a4c 100644 --- a/srsue/src/phy/phy.cc +++ b/srsue/src/phy/phy.cc @@ -461,7 +461,7 @@ bool phy::set_config(const srsran::phy_cfg_t& config_, uint32_t cc_idx) if (cc_idx >= args.nof_lte_carriers) { srsran::console("Received SCell configuration for index %d but there are not enough CC workers available\n", cc_idx); - return false; + return true; } Info("Setting configuration");