From 8a651c972e54a984c36f4b49541984e2335b1d38 Mon Sep 17 00:00:00 2001 From: Francisco Paisana Date: Wed, 26 Aug 2020 15:46:59 +0100 Subject: [PATCH] add scells to ho cmd --- srsenb/src/stack/rrc/rrc_mobility.cc | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/srsenb/src/stack/rrc/rrc_mobility.cc b/srsenb/src/stack/rrc/rrc_mobility.cc index ebabebc1f..a19c3298d 100644 --- a/srsenb/src/stack/rrc/rrc_mobility.cc +++ b/srsenb/src/stack/rrc/rrc_mobility.cc @@ -1055,6 +1055,12 @@ void rrc::ue::rrc_mobility::handle_ho_req(idle_st& s, const ho_req_rx_ev& ho_req fill_mobility_reconf_common(dl_dcch_msg, *target_cell->cell_common, hoprep_r8.as_cfg.source_dl_carrier_freq); rrc_conn_recfg_r8_ies_s& recfg_r8 = dl_dcch_msg.msg.c1().rrc_conn_recfg().crit_exts.c1().rrc_conn_recfg_r8(); + // Add SCells + if (rrc_ue->fill_scell_to_addmod_list(&recfg_r8) != SRSLTE_SUCCESS) { + rrc_log->warning("Could not create configuration for Scell\n"); + return; + } + // Apply new Security Config based on HandoverRequest // See TS 33.401, Sec. 7.2.8.4.3 recfg_r8.security_cfg_ho_present = true;