srsLTE/srsenb/hdr/phy/enb_phy_base.h

46 lines
987 B
C
Raw Normal View History

/**
2017-05-30 06:38:04 -07:00
*
* \section COPYRIGHT
2017-05-30 06:38:04 -07:00
*
* Copyright 2013-2020 Software Radio Systems Limited
2017-05-30 06:38:04 -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.
2017-05-30 06:38:04 -07:00
*
*/
/******************************************************************************
* File: enb_phy_base.h
* Description: Base class for all eNB PHYs.
*****************************************************************************/
2017-05-30 06:38:04 -07:00
#ifndef SRSENB_PHY_BASE_H
#define SRSENB_PHY_BASE_H
2017-05-30 06:38:04 -07:00
2020-05-21 11:40:15 -07:00
#include "srsenb/hdr/phy/phy_metrics.h"
#include <vector>
2017-05-30 06:38:04 -07:00
namespace srsenb {
2017-05-30 06:38:04 -07:00
class enb_phy_base
2017-05-30 06:38:04 -07:00
{
public:
enb_phy_base(){};
virtual ~enb_phy_base(){};
2019-04-23 01:53:11 -07:00
virtual std::string get_type() = 0;
2019-04-23 01:53:11 -07:00
virtual void stop() = 0;
virtual void start_plot() = 0;
virtual void get_metrics(std::vector<phy_metrics_t>& m) = 0;
virtual void cmd_cell_gain(uint32_t cell_idx, float gain_db) = 0;
2017-05-30 06:38:04 -07:00
};
} // namespace srsenb
2017-05-30 06:38:04 -07:00
#endif // SRSENB_PHY_BASE_H