|
|
@ -947,6 +947,21 @@ void fill_srb(const rrc_nr_cfg_t& cfg, srsran::nr_srb srb_id, asn1::rrc_nr::rlc_
|
|
|
|
out.served_radio_bearer_present = true;
|
|
|
|
out.served_radio_bearer_present = true;
|
|
|
|
out.served_radio_bearer.set_srb_id() = (uint8_t)srb_id;
|
|
|
|
out.served_radio_bearer.set_srb_id() = (uint8_t)srb_id;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (srb_id == srsran::nr_srb::srb1) {
|
|
|
|
|
|
|
|
if (cfg.srb1_cfg.present) {
|
|
|
|
|
|
|
|
out.rlc_cfg_present = true;
|
|
|
|
|
|
|
|
out.rlc_cfg = cfg.srb1_cfg.rlc_cfg;
|
|
|
|
|
|
|
|
} else {
|
|
|
|
|
|
|
|
out.rlc_cfg_present = false;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
} else if (srb_id == srsran::nr_srb::srb2) {
|
|
|
|
|
|
|
|
if (cfg.srb2_cfg.present) {
|
|
|
|
|
|
|
|
out.rlc_cfg_present = true;
|
|
|
|
|
|
|
|
out.rlc_cfg = cfg.srb2_cfg.rlc_cfg;
|
|
|
|
|
|
|
|
} else {
|
|
|
|
|
|
|
|
out.rlc_cfg_present = false;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
} else {
|
|
|
|
out.rlc_cfg_present = true;
|
|
|
|
out.rlc_cfg_present = true;
|
|
|
|
auto& ul_am = out.rlc_cfg.set_am().ul_am_rlc;
|
|
|
|
auto& ul_am = out.rlc_cfg.set_am().ul_am_rlc;
|
|
|
|
ul_am.sn_field_len_present = true;
|
|
|
|
ul_am.sn_field_len_present = true;
|
|
|
@ -960,6 +975,7 @@ void fill_srb(const rrc_nr_cfg_t& cfg, srsran::nr_srb srb_id, asn1::rrc_nr::rlc_
|
|
|
|
dl_am.sn_field_len.value = asn1::rrc_nr::sn_field_len_am_opts::size12;
|
|
|
|
dl_am.sn_field_len.value = asn1::rrc_nr::sn_field_len_am_opts::size12;
|
|
|
|
dl_am.t_reassembly.value = t_reassembly_opts::ms35;
|
|
|
|
dl_am.t_reassembly.value = t_reassembly_opts::ms35;
|
|
|
|
dl_am.t_status_prohibit.value = asn1::rrc_nr::t_status_prohibit_opts::ms0;
|
|
|
|
dl_am.t_status_prohibit.value = asn1::rrc_nr::t_status_prohibit_opts::ms0;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// mac-LogicalChannelConfig -- Cond LCH-Setup
|
|
|
|
// mac-LogicalChannelConfig -- Cond LCH-Setup
|
|
|
|
out.mac_lc_ch_cfg_present = true;
|
|
|
|
out.mac_lc_ch_cfg_present = true;
|
|
|
|