|
|
|
/**
|
|
|
|
*
|
|
|
|
* \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_INTERFACES_COMMON_H
|
|
|
|
#define SRSLTE_INTERFACES_COMMON_H
|
|
|
|
|
|
|
|
#include "srslte/common/security.h"
|
|
|
|
#include <string>
|
|
|
|
|
|
|
|
namespace srslte {
|
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
std::string phy_level = "none";
|
|
|
|
std::string phy_lib_level = "none";
|
|
|
|
int phy_hex_limit = -1;
|
|
|
|
} phy_log_args_t;
|
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
float min;
|
|
|
|
float max;
|
|
|
|
} rf_args_band_t;
|
|
|
|
|
|
|
|
// RF/radio args
|
|
|
|
typedef struct {
|
|
|
|
std::string type;
|
|
|
|
std::string log_level;
|
|
|
|
double srate_hz;
|
|
|
|
float dl_freq;
|
|
|
|
float ul_freq;
|
|
|
|
float freq_offset;
|
|
|
|
float rx_gain;
|
|
|
|
float rx_gain_ch[SRSLTE_MAX_CARRIERS];
|
|
|
|
float tx_gain;
|
|
|
|
float tx_gain_ch[SRSLTE_MAX_CARRIERS];
|
|
|
|
float tx_max_power;
|
|
|
|
float tx_gain_offset;
|
|
|
|
float rx_gain_offset;
|
|
|
|
uint32_t nof_carriers; // Number of RF channels
|
|
|
|
uint32_t nof_antennas; // Number of antennas per RF channel
|
|
|
|
std::string device_name;
|
|
|
|
std::string device_args;
|
|
|
|
std::string time_adv_nsamples;
|
|
|
|
std::string continuous_tx;
|
|
|
|
|
|
|
|
std::array<rf_args_band_t, SRSLTE_MAX_CARRIERS> ch_rx_bands;
|
|
|
|
std::array<rf_args_band_t, SRSLTE_MAX_CARRIERS> ch_tx_bands;
|
|
|
|
|
|
|
|
} rf_args_t;
|
|
|
|
|
|
|
|
struct vnf_args_t {
|
|
|
|
std::string type;
|
|
|
|
std::string bind_addr;
|
|
|
|
uint16_t bind_port;
|
|
|
|
std::string log_level;
|
|
|
|
int log_hex_limit;
|
|
|
|
};
|
|
|
|
|
|
|
|
class srslte_gw_config_t
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
explicit srslte_gw_config_t(uint32_t lcid_ = 0) : lcid(lcid_) {}
|
|
|
|
|
|
|
|
uint32_t lcid;
|
|
|
|
};
|
|
|
|
|
|
|
|
class read_pdu_interface
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
virtual int read_pdu(uint32_t lcid, uint8_t* payload, uint32_t requested_bytes) = 0;
|
|
|
|
};
|
|
|
|
|
|
|
|
class stack_interface_phy_nr
|
|
|
|
{};
|
|
|
|
|
|
|
|
} // namespace srslte
|
|
|
|
|
|
|
|
#endif // SRSLTE_INTERFACES_COMMON_H
|