From 790b32f6f573c2f48b2e3438d65fdd8f3aa9c2b6 Mon Sep 17 00:00:00 2001 From: Francisco Paisana Date: Wed, 24 Jun 2020 17:46:12 +0100 Subject: [PATCH] fix CA ue category check --- srsenb/src/stack/rrc/rrc_ue.cc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/srsenb/src/stack/rrc/rrc_ue.cc b/srsenb/src/stack/rrc/rrc_ue.cc index 703010aa6..6b27d0fc5 100644 --- a/srsenb/src/stack/rrc/rrc_ue.cc +++ b/srsenb/src/stack/rrc/rrc_ue.cc @@ -1020,7 +1020,8 @@ cell_info_common* rrc::ue::get_ue_cc_cfg(uint32_t ue_cc_idx) //! Method to fill SCellToAddModList for SCell info int rrc::ue::fill_scell_to_addmod_list(asn1::rrc::rrc_conn_recfg_r8_ies_s* conn_reconf) { - if (not eutra_capabilities_unpacked or ue_capabilities.release < 10 or ue_capabilities.category < 5) { + // Check whether UE supports CA + if (not eutra_capabilities_unpacked or ue_capabilities.release < 10 or ue_capabilities.category < 7) { return SRSLTE_SUCCESS; }