From 703e8dc6f140efbcfff730b24ce95d0dcc3a1e6b Mon Sep 17 00:00:00 2001 From: Andre Puschmann Date: Wed, 6 Oct 2021 17:01:50 +0200 Subject: [PATCH] enb,rrc_nr: fix bug where freqInfoUL was not containing abs_freqpoint_A for FDD --- srsenb/src/stack/rrc/rrc_nr.cc | 1 + 1 file changed, 1 insertion(+) diff --git a/srsenb/src/stack/rrc/rrc_nr.cc b/srsenb/src/stack/rrc/rrc_nr.cc index 01edefc30..e49493c99 100644 --- a/srsenb/src/stack/rrc/rrc_nr.cc +++ b/srsenb/src/stack/rrc/rrc_nr.cc @@ -1045,6 +1045,7 @@ int rrc_nr::ue::pack_recfg_with_sync_sp_cell_cfg_common_ul_cfg_common_freq_info_ cell_group_cfg_pack.sp_cell_cfg.recfg_with_sync.sp_cell_cfg_common.ul_cfg_common.freq_info_ul_present = true; auto& freq_info_ul = cell_group_cfg_pack.sp_cell_cfg.recfg_with_sync.sp_cell_cfg_common.ul_cfg_common.freq_info_ul; freq_info_ul.freq_band_list.push_back(parent->cfg.cell_list[0].band); + freq_info_ul.absolute_freq_point_a_present = true; freq_info_ul.absolute_freq_point_a = parent->cfg.cell_list[0].ul_absolute_freq_point_a; freq_info_ul.scs_specific_carrier_list.resize(1);