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.
32 lines
709 B
C
32 lines
709 B
C
4 years ago
|
/**
|
||
4 years ago
|
*
|
||
4 years ago
|
* \section COPYRIGHT
|
||
4 years ago
|
*
|
||
4 years ago
|
* Copyright 2013-2021 Software Radio Systems Limited
|
||
4 years ago
|
*
|
||
4 years ago
|
* 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.
|
||
4 years ago
|
*
|
||
|
*/
|
||
|
|
||
4 years ago
|
#ifndef SRSRAN_ENB_COMMAND_INTERFACE_H
|
||
|
#define SRSRAN_ENB_COMMAND_INTERFACE_H
|
||
4 years ago
|
|
||
|
#include <cstdint>
|
||
|
|
||
|
namespace srsenb {
|
||
|
class enb_command_interface
|
||
|
{
|
||
|
public:
|
||
|
/**
|
||
|
* Sets the relative gain of a cell from it's index (following rr.conf) order.
|
||
4 years ago
|
* @param cell_id Provides a cell identifier
|
||
4 years ago
|
* @param gain Relative gain
|
||
|
*/
|
||
4 years ago
|
virtual void cmd_cell_gain(uint32_t cell_id, float gain) = 0;
|
||
4 years ago
|
};
|
||
|
} // namespace srsenb
|
||
|
|
||
4 years ago
|
#endif // SRSRAN_ENB_COMMAND_INTERFACE_H
|