From 3cd2de1ffe309c10653239c3dcf1d021d3060547 Mon Sep 17 00:00:00 2001 From: Andre Puschmann Date: Thu, 30 Sep 2021 16:53:51 +0200 Subject: [PATCH] ue,rrc_nr: accept RRC Reconfigs with disable NZP and ZP configs --- srsue/src/stack/rrc/rrc_nr.cc | 9 --------- 1 file changed, 9 deletions(-) diff --git a/srsue/src/stack/rrc/rrc_nr.cc b/srsue/src/stack/rrc/rrc_nr.cc index 156dc9513..23bc617c4 100644 --- a/srsue/src/stack/rrc/rrc_nr.cc +++ b/srsue/src/stack/rrc/rrc_nr.cc @@ -681,9 +681,6 @@ bool rrc_nr::apply_sp_cell_init_dl_pdsch(const asn1::rrc_nr::pdsch_cfg_s& pdsch_ logger.warning("Option p_zp_csi_rs_res_set not of type setup"); return false; } - } else { - logger.warning("Option p_zp_csi_rs_res_set not present"); - return false; } return true; } @@ -738,9 +735,6 @@ bool rrc_nr::apply_csi_meas_cfg(const asn1::rrc_nr::csi_meas_cfg_s& csi_meas_cfg return false; } } - } else { - logger.warning("Option nzp_csi_rs_res_to_add_mod_list not present"); - return false; } if (csi_meas_cfg.nzp_csi_rs_res_set_to_add_mod_list_present) { @@ -760,9 +754,6 @@ bool rrc_nr::apply_csi_meas_cfg(const asn1::rrc_nr::csi_meas_cfg_s& csi_meas_cfg phy_cfg.pdsch.nzp_csi_rs_sets[set_id].trs_info = true; } } - } else { - logger.warning("Option p_zp_csi_rs_res_set not present"); - return false; } return true;