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.
87 lines
3.0 KiB
C++
87 lines
3.0 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 SRSUE_DUMMY_CLASSES_H
|
|
#define SRSUE_DUMMY_CLASSES_H
|
|
|
|
#include "srsran/common/task_scheduler.h"
|
|
#include "srsran/interfaces/phy_interface_types.h"
|
|
#include "srsran/interfaces/ue_interfaces.h"
|
|
#include "srsran/interfaces/ue_phy_interfaces.h"
|
|
#include "srsran/interfaces/ue_rlc_interfaces.h"
|
|
|
|
namespace srsue {
|
|
|
|
class stack_test_dummy : public stack_interface_rrc
|
|
{
|
|
public:
|
|
stack_test_dummy() {}
|
|
|
|
srsran::tti_point get_current_tti() override { return srsran::tti_point{tti % 10240}; }
|
|
void add_eps_bearer(uint8_t eps_bearer_id, srsran::srsran_rat_t rat, uint32_t lcid) final{};
|
|
void remove_eps_bearer(uint8_t eps_bearer_id) final{};
|
|
void reset_eps_bearers() final{};
|
|
|
|
// Testing utility functions
|
|
void run_tti()
|
|
{
|
|
// update clock and run internal tasks
|
|
tti++;
|
|
task_sched.tic();
|
|
|
|
task_sched.run_pending_tasks();
|
|
}
|
|
|
|
// run pending tasks without updating timers
|
|
void run_pending_tasks() { task_sched.run_pending_tasks(); }
|
|
|
|
uint32_t tti = 0;
|
|
srsran::task_scheduler task_sched{512, 100};
|
|
};
|
|
|
|
class rlc_dummy_interface : public rlc_interface_mac
|
|
{
|
|
public:
|
|
bool has_data_locked(const uint32_t lcid) override { return false; }
|
|
uint32_t get_buffer_state(const uint32_t lcid) override { return 0; }
|
|
uint32_t read_pdu(uint32_t lcid, uint8_t* payload, uint32_t nof_bytes) override { return 0; }
|
|
void write_pdu(uint32_t lcid, uint8_t* payload, uint32_t nof_bytes) override {}
|
|
void write_pdu_bcch_bch(srsran::unique_byte_buffer_t payload) override {}
|
|
void write_pdu_bcch_dlsch(uint8_t* payload, uint32_t nof_bytes) override {}
|
|
void write_pdu_pcch(srsran::unique_byte_buffer_t payload) override {}
|
|
void write_pdu_mch(uint32_t lcid, uint8_t* payload, uint32_t nof_bytes) override {}
|
|
};
|
|
|
|
class phy_dummy_interface : public phy_interface_rrc_lte
|
|
{
|
|
bool set_config(const srsran::phy_cfg_t& config, uint32_t cc_idx) override { return true; }
|
|
bool set_scell(srsran_cell_t cell_info, uint32_t cc_idx, uint32_t earfcn) override { return true; }
|
|
void set_config_tdd(srsran_tdd_config_t& tdd_config) override {}
|
|
void set_config_mbsfn_sib2(srsran::mbsfn_sf_cfg_t* cfg_list, uint32_t nof_cfgs) override {}
|
|
void set_config_mbsfn_sib13(const srsran::sib13_t& sib13) override {}
|
|
void set_config_mbsfn_mcch(const srsran::mcch_msg_t& mcch) override {}
|
|
void deactivate_scells() override {}
|
|
|
|
/* Measurements interface */
|
|
void set_cells_to_meas(uint32_t earfcn, const std::set<uint32_t>& pci) override {}
|
|
void meas_stop() override {}
|
|
|
|
/* Cell search and selection procedures */
|
|
bool cell_search() override { return true; }
|
|
bool cell_select(phy_cell_t cell) override { return true; }
|
|
bool cell_is_camping() override { return false; }
|
|
};
|
|
|
|
} // namespace srsue
|
|
|
|
#endif // SRSUE_DUMMY_CLASSES_H
|