srsLTE/srsenb/hdr/stack/rrc/rrc_config_common.h

41 lines
1014 B
C++

/**
*
* \section COPYRIGHT
*
* Copyright 2013-2020 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 SRSLTE_RRC_CONFIG_COMMON_H
#define SRSLTE_RRC_CONFIG_COMMON_H
#include <cstdint>
namespace srsenb {
enum rrc_cfg_cqi_mode_t { RRC_CFG_CQI_MODE_PERIODIC = 0, RRC_CFG_CQI_MODE_APERIODIC, RRC_CFG_CQI_MODE_N_ITEMS };
static const char* rrc_cfg_cqi_mode_text[] = {"periodic", "aperiodic"};
inline const char* to_string(rrc_cfg_cqi_mode_t mode)
{
return mode < RRC_CFG_CQI_MODE_N_ITEMS ? rrc_cfg_cqi_mode_text[mode] : "invalid CQI mode";
}
struct rrc_cfg_cqi_t {
uint32_t sf_mapping[80];
uint32_t nof_subframes;
uint32_t nof_prb;
uint32_t period;
uint32_t m_ri;
bool simultaneousAckCQI;
rrc_cfg_cqi_mode_t mode;
};
} // namespace srsenb
#endif // SRSLTE_RRC_CONFIG_COMMON_H