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.
51 lines
1.2 KiB
C++
51 lines
1.2 KiB
C++
/**
|
|
*
|
|
* \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 SRSENB_COMMON_ENB_H
|
|
#define SRSENB_COMMON_ENB_H
|
|
|
|
/*******************************************************************************
|
|
INCLUDES
|
|
*******************************************************************************/
|
|
|
|
#include "srsran/common/lte_common.h"
|
|
#include <stdint.h>
|
|
|
|
namespace srsenb {
|
|
|
|
#define SRSENB_RRC_MAX_N_PLMN_IDENTITIES 6
|
|
|
|
#define SRSENB_N_SRB 3
|
|
#define SRSENB_N_DRB 8
|
|
#define SRSENB_N_RADIO_BEARERS 11
|
|
#define SRSENB_MAX_UES 64
|
|
|
|
using srsran::lte_rb;
|
|
inline const char* get_rb_name(uint32_t lcid)
|
|
{
|
|
return srsran::get_rb_name(static_cast<lte_rb>(lcid));
|
|
}
|
|
inline uint32_t rb_to_lcid(lte_rb rb_id)
|
|
{
|
|
return static_cast<uint32_t>(rb_id);
|
|
}
|
|
|
|
// Cat 3 UE - Max number of DL-SCH transport block bits received within a TTI
|
|
// 3GPP 36.306 Table 4.1.1
|
|
#define SRSENB_MAX_BUFFER_SIZE_BITS 102048
|
|
#define SRSENB_MAX_BUFFER_SIZE_BYTES 12756
|
|
#define SRSENB_BUFFER_HEADER_OFFSET 1024
|
|
|
|
} // namespace srsenb
|
|
|
|
#endif // SRSENB_COMMON_ENB_H
|