From 546f637f917af8c7f355a3258fced70db4f6bdae Mon Sep 17 00:00:00 2001 From: Andre Puschmann Date: Wed, 6 Oct 2021 17:20:49 +0200 Subject: [PATCH] rrc_endc: increase max_report_cells to 8 make sure that both EUTRA and NR cells fit in report --- srsenb/src/stack/rrc/rrc_endc.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srsenb/src/stack/rrc/rrc_endc.cc b/srsenb/src/stack/rrc/rrc_endc.cc index 22a77614a..8a1ad789e 100644 --- a/srsenb/src/stack/rrc/rrc_endc.cc +++ b/srsenb/src/stack/rrc/rrc_endc.cc @@ -91,7 +91,7 @@ bool rrc::ue::rrc_endc::fill_conn_recfg(asn1::rrc::rrc_conn_recfg_r8_ies_s* conn report_cfg.report_cfg.report_cfg_inter_rat().trigger_type.event().hysteresis = 0; report_cfg.report_cfg.report_cfg_inter_rat().trigger_type.event().time_to_trigger = time_to_trigger_opts::ms100; - report_cfg.report_cfg.report_cfg_inter_rat().max_report_cells = 1; + report_cfg.report_cfg.report_cfg_inter_rat().max_report_cells = 8; report_cfg.report_cfg.report_cfg_inter_rat().report_interv = report_interv_opts::ms120; report_cfg.report_cfg.report_cfg_inter_rat().report_amount = report_cfg_inter_rat_s::report_amount_opts::r1; report_cfg.report_cfg.report_cfg_inter_rat().report_quant_cell_nr_r15.set_present(true);