From 3ee15191e7c1b001e0c75d2040034b4a1a4b099f Mon Sep 17 00:00:00 2001 From: Ismael Gomez Date: Tue, 1 Sep 2020 12:20:13 +0200 Subject: [PATCH] Allow inactive cells to report CQI too during Reconfiguration --- srsenb/src/phy/phy_ue_db.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srsenb/src/phy/phy_ue_db.cc b/srsenb/src/phy/phy_ue_db.cc index b8b5d29e9..7702849db 100644 --- a/srsenb/src/phy/phy_ue_db.cc +++ b/srsenb/src/phy/phy_ue_db.cc @@ -594,7 +594,7 @@ void phy_ue_db::send_uci_data(uint32_t tti, } // Assert the SCell exists and it is active - _assert_active_ue_cc(rnti, uci_cfg.cqi.scell_index); + _assert_ue_cc(rnti, uci_cfg.cqi.scell_index); // Get CQI carrier index cell_info_t& cqi_scell_info = ue_db.at(rnti).cell_info[uci_cfg.cqi.scell_index];