Revert UE changes

This commit is contained in:
Ismael Gomez 2021-06-18 14:47:02 +02:00
parent aa5944da78
commit e35a0d72fa
6 changed files with 6 additions and 6 deletions

View File

@ -30,7 +30,7 @@ public:
class process_callback
{
public:
virtual void process_pdu(uint8_t* buff, uint32_t len, uint32_t ue_cc_idx, channel_t channel, int ul_nof_prbs = -1) = 0;
virtual void process_pdu(uint8_t* buff, uint32_t len, channel_t channel, int ul_nof_prbs = -1) = 0;
};
pdu_queue(srslog::basic_logger& logger) : pool(DEFAULT_POOL_SIZE), callback(NULL), logger(logger) {}

View File

@ -76,7 +76,7 @@ bool pdu_queue::process_pdus()
pdu_t* pdu;
while (pdu_q.try_pop(pdu)) {
if (callback) {
callback->process_pdu(pdu->ptr, pdu->len, pdu->ue_cc_idx, pdu->channel, pdu->grant_nof_prbs);
callback->process_pdu(pdu->ptr, pdu->len, pdu->channel, pdu->grant_nof_prbs);
}
cnt++;
have_data = true;

View File

@ -56,7 +56,7 @@ public:
bool get_uecrid_successful();
void process_pdu(uint8_t* pdu, uint32_t nof_bytes, uint32_t cc_idx, srsran::pdu_queue::channel_t channel, int ul_nof_prbs);
void process_pdu(uint8_t* pdu, uint32_t nof_bytes, srsran::pdu_queue::channel_t channel, int ul_nof_prbs);
void mch_start_rx(uint32_t lcid);
private:

View File

@ -147,7 +147,7 @@ bool demux::process_pdus()
return pdus.process_pdus();
}
void demux::process_pdu(uint8_t* mac_pdu, uint32_t nof_bytes, uint32_t cc_idx, srsran::pdu_queue::channel_t channel, int ul_nof_prbs)
void demux::process_pdu(uint8_t* mac_pdu, uint32_t nof_bytes, srsran::pdu_queue::channel_t channel, int ul_nof_prbs)
{
Debug("Processing MAC PDU channel %d", channel);
switch (channel) {

View File

@ -104,7 +104,7 @@ public:
uint32_t get_tti();
void process_pdu(uint8_t* buff, uint32_t len, uint32_t ue_cc_idx, pdu_queue::channel_t channel, int ul_nof_prbs);
void process_pdu(uint8_t* buff, uint32_t len, pdu_queue::channel_t channel, int ul_nof_prbs);
void set_cell_config(const ttcn3_helpers::timing_info_t timing, const cell_config_t cell);
void set_cell_config_impl(const cell_config_t cell);

View File

@ -759,7 +759,7 @@ uint32_t ttcn3_syssim::get_tti()
return tti;
}
void ttcn3_syssim::process_pdu(uint8_t* buff, uint32_t len, uint32_t ue_cc_idx, pdu_queue::channel_t channel, int ul_nof_prbs) {}
void ttcn3_syssim::process_pdu(uint8_t* buff, uint32_t len, pdu_queue::channel_t channel, int ul_nof_prbs) {}
void ttcn3_syssim::set_cell_config(const ttcn3_helpers::timing_info_t timing, const cell_config_t cell)
{