srsLTE/lib/include/srslte/asn1/rrc_nr_utils.h

61 lines
1.5 KiB
C
Raw Normal View History

/**
2020-06-03 11:59:25 -07:00
*
* \section COPYRIGHT
2020-06-03 11:59:25 -07:00
*
* Copyright 2013-2020 Software Radio Systems Limited
2020-06-03 11:59:25 -07:00
*
* By using this file, you agree to the terms and conditions set
* forth in the LICENSE file which can be found at the top level of
* the distribution.
2020-06-03 11:59:25 -07:00
*
*/
2020-11-04 11:31:49 -08:00
#ifndef SRSLTE_RRC_NR_UTILS_H
#define SRSLTE_RRC_NR_UTILS_H
2020-06-03 11:59:25 -07:00
#include "srslte/interfaces/pdcp_interface_types.h"
#include "srslte/interfaces/rlc_interface_types.h"
2020-06-03 11:59:25 -07:00
#include "srslte/interfaces/rrc_interface_types.h"
#include "srslte/interfaces/sched_interface.h"
/************************
* Forward declarations
***********************/
namespace asn1 {
namespace rrc_nr {
struct plmn_id_s;
struct sib1_s;
struct rlc_cfg_c;
struct pdcp_cfg_s;
2020-06-03 11:59:25 -07:00
} // namespace rrc_nr
} // namespace asn1
/************************
* Conversion Helpers
***********************/
namespace srslte {
plmn_id_t make_plmn_id_t(const asn1::rrc_nr::plmn_id_s& asn1_type);
void to_asn1(asn1::rrc_nr::plmn_id_s* asn1_type, const plmn_id_t& cfg);
/***************************
* RLC Config
**************************/
rlc_config_t make_rlc_config_t(const asn1::rrc_nr::rlc_cfg_c& asn1_type);
/***************************
* PDCP Config
**************************/
pdcp_config_t make_drb_pdcp_config_t(const uint8_t bearer_id, bool is_ue, const asn1::rrc_nr::pdcp_cfg_s& pdcp_cfg);
2020-06-03 11:59:25 -07:00
} // namespace srslte
namespace srsenb {
int set_sched_cell_cfg_sib1(srsenb::sched_interface::cell_cfg_t* sched_cfg, const asn1::rrc_nr::sib1_s& sib1);
}
2020-11-04 11:31:49 -08:00
#endif // SRSLTE_RRC_NR_UTILS_H