From 5c59cbfa755e3e5f4a6ca0b2c21ff2e33f7b5d90 Mon Sep 17 00:00:00 2001 From: Andre Puschmann Date: Mon, 25 Apr 2022 13:35:08 +0200 Subject: [PATCH] ue,rrc_nr: include RLC capabilities in NR cap info this is needed to enable RLC UM DRBs with Amarisoft --- srsue/src/stack/rrc_nr/rrc_nr.cc | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/srsue/src/stack/rrc_nr/rrc_nr.cc b/srsue/src/stack/rrc_nr/rrc_nr.cc index 581b31ac1..9a4186891 100644 --- a/srsue/src/stack/rrc_nr/rrc_nr.cc +++ b/srsue/src/stack/rrc_nr/rrc_nr.cc @@ -719,6 +719,12 @@ int rrc_nr::send_ue_capability_info(const asn1::rrc_nr::ue_cap_enquiry_s& msg) ue_nr_cap_s ue_cap; ue_cap.access_stratum_release = access_stratum_release_opts::rel15; + // RLC params + ue_cap.rlc_params_present = true; + ue_cap.rlc_params.am_with_short_sn_present = true; + ue_cap.rlc_params.um_with_short_sn_present = true; + ue_cap.rlc_params.um_with_long_sn_present = true; + // PDCP parameters ue_cap.pdcp_params.supported_rohc_profiles.profile0x0000 = false; ue_cap.pdcp_params.supported_rohc_profiles.profile0x0001 = false;