From 7a3a5f4cf4636a6ef25c59950b675641dc55c6f6 Mon Sep 17 00:00:00 2001 From: Andre Puschmann Date: Wed, 24 Mar 2021 21:13:55 +0100 Subject: [PATCH] rrc_nr: announce short SN in PDCP capabilities this allows selecting 12bit SNs for the NR PDCP entity --- srsue/src/stack/rrc/rrc_nr.cc | 1 + 1 file changed, 1 insertion(+) diff --git a/srsue/src/stack/rrc/rrc_nr.cc b/srsue/src/stack/rrc/rrc_nr.cc index f54508d43..171f1582d 100644 --- a/srsue/src/stack/rrc/rrc_nr.cc +++ b/srsue/src/stack/rrc/rrc_nr.cc @@ -415,6 +415,7 @@ void rrc_nr::get_nr_capabilities(srsran::byte_buffer_t* nr_caps_pdu) nr_cap.rlc_params_present = true; nr_cap.rlc_params.um_with_short_sn_present = true; nr_cap.rlc_params.um_with_long_sn_present = true; + nr_cap.pdcp_params.short_sn_present = true; // Pack nr_caps asn1::bit_ref bref(nr_caps_pdu->msg, nr_caps_pdu->get_tailroom());