From bab0b488be9a60c35dd1650d11afa1ff9d2108bc Mon Sep 17 00:00:00 2001 From: Carlo Galiotto Date: Thu, 6 Jan 2022 15:41:45 +0100 Subject: [PATCH] rrc-nr: disable csi_meas_config The current configuration makes the PUCCH decoding fail. We need to investigate the reason for this befoer we re-enable it Signed-off-by: Carlo Galiotto --- srsgnb/src/stack/rrc/cell_asn1_config.cc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/srsgnb/src/stack/rrc/cell_asn1_config.cc b/srsgnb/src/stack/rrc/cell_asn1_config.cc index e551ac522..9088dee5c 100644 --- a/srsgnb/src/stack/rrc/cell_asn1_config.cc +++ b/srsgnb/src/stack/rrc/cell_asn1_config.cc @@ -1072,6 +1072,8 @@ int fill_master_cell_cfg_from_enb_cfg(const rrc_nr_cfg_t& cfg, uint32_t cc, asn1 fill_sp_cell_cfg_from_enb_cfg(cfg, cc, out.sp_cell_cfg); out.sp_cell_cfg.recfg_with_sync_present = false; + // The current CSI config make the PUCCH decoding fail. We temporarily disable it until further investigation + out.sp_cell_cfg.sp_cell_cfg_ded.csi_meas_cfg_present = false; return SRSRAN_SUCCESS; }