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.
67 lines
1.8 KiB
C++
67 lines
1.8 KiB
C++
/**
|
|
* Copyright 2013-2021 Software Radio Systems Limited
|
|
*
|
|
* This file is part of srsLTE.
|
|
*
|
|
* srsLTE is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU Affero General Public License as
|
|
* published by the Free Software Foundation, either version 3 of
|
|
* the License, or (at your option) any later version.
|
|
*
|
|
* srsLTE is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU Affero General Public License for more details.
|
|
*
|
|
* A copy of the GNU Affero General Public License can be found in
|
|
* the LICENSE file in the top-level directory of this distribution
|
|
* and at http://www.gnu.org/licenses/.
|
|
*
|
|
*/
|
|
|
|
#ifndef SRSUE_PROC_SR_NR_H
|
|
#define SRSUE_PROC_SR_NR_H
|
|
|
|
#include "srsran/interfaces/ue_mac_interfaces.h"
|
|
#include "srsran/srslog/srslog.h"
|
|
#include <stdint.h>
|
|
|
|
/// Scheduling Request procedure as defined in 5.4.4 of 38.321
|
|
/// Note: currently only a single SR config for all logical channels is supported
|
|
|
|
namespace srsue {
|
|
|
|
class proc_ra_nr;
|
|
class phy_interface_mac_nr;
|
|
class rrc_interface_mac;
|
|
|
|
class proc_sr_nr
|
|
{
|
|
public:
|
|
explicit proc_sr_nr(srslog::basic_logger& logger);
|
|
int32_t init(proc_ra_nr* ra_, phy_interface_mac_nr* phy_, rrc_interface_mac* rrc_);
|
|
void step(uint32_t tti);
|
|
int32_t set_config(const srsran::sr_cfg_nr_t& cfg);
|
|
void reset();
|
|
void start();
|
|
|
|
private:
|
|
bool need_tx(uint32_t tti);
|
|
|
|
int sr_counter = 0;
|
|
bool is_pending_sr = 0;
|
|
|
|
srsran::sr_cfg_nr_t cfg = {};
|
|
|
|
proc_ra_nr* ra = nullptr;
|
|
rrc_interface_mac* rrc = nullptr;
|
|
phy_interface_mac_nr* phy = nullptr;
|
|
srslog::basic_logger& logger;
|
|
|
|
bool initiated = false;
|
|
};
|
|
|
|
} // namespace srsue
|
|
|
|
#endif // SRSUE_PROC_SR_H
|