From 827823cfb1f0c6c3795b4fe90a351ea125800b71 Mon Sep 17 00:00:00 2001 From: Pedro Alvarez Date: Thu, 18 Feb 2021 12:09:30 +0000 Subject: [PATCH] Change reestablish order in RRC Procedures --- srsue/src/stack/rrc/rrc_procedures.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srsue/src/stack/rrc/rrc_procedures.cc b/srsue/src/stack/rrc/rrc_procedures.cc index 19f73532d..f7d3ffd17 100644 --- a/srsue/src/stack/rrc/rrc_procedures.cc +++ b/srsue/src/stack/rrc/rrc_procedures.cc @@ -1610,8 +1610,8 @@ srslte::proc_outcome_t rrc::ho_proc::init(const asn1::rrc::rrc_conn_recfg_s& rrc rrc_ptr->mac->reset(); // Reestablish PDCP/RLC - rrc_ptr->pdcp->reestablish(); rrc_ptr->rlc->reestablish(); + rrc_ptr->pdcp->reestablish(); // configure lower layers to consider the SCell(s), if configured, to be in deactivated state; if (nof_scells_active > 0) {