mirror of https://github.com/pvnis/srsRAN_4G.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
731 B
C
29 lines
731 B
C
3 years ago
|
/**
|
||
|
*
|
||
|
* \section COPYRIGHT
|
||
|
*
|
||
|
* Copyright 2013-2021 Software Radio Systems Limited
|
||
|
*
|
||
|
* 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.
|
||
|
*
|
||
|
*/
|
||
|
|
||
|
#ifndef SRSRAN_CELL_ASN1_CONFIG_H
|
||
|
#define SRSRAN_CELL_ASN1_CONFIG_H
|
||
|
|
||
|
#include "rrc_config_nr.h"
|
||
|
#include "srsran/asn1/rrc_nr.h"
|
||
|
|
||
|
namespace srsenb {
|
||
|
|
||
3 years ago
|
int fill_sp_cell_cfg_from_enb_cfg(const rrc_nr_cfg_t& cfg, uint32_t cc, asn1::rrc_nr::sp_cell_cfg_s& sp_cell);
|
||
3 years ago
|
|
||
3 years ago
|
int fill_mib_from_enb_cfg(const rrc_nr_cfg_t& cfg, asn1::rrc_nr::mib_s& mib);
|
||
|
int fill_sib1_from_enb_cfg(const rrc_nr_cfg_t& cfg, asn1::rrc_nr::sib1_s& sib1);
|
||
|
|
||
|
} // namespace srsenb
|
||
3 years ago
|
|
||
|
#endif // SRSRAN_CELL_ASN1_CONFIG_H
|