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.
45 lines
1.3 KiB
C
45 lines
1.3 KiB
C
3 years ago
|
/**
|
||
|
*
|
||
|
* \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.
|
||
|
*
|
||
|
*/
|
||
|
|
||
3 years ago
|
#ifndef SRSRAN_SCHED_NR_HELPERS_H
|
||
|
#define SRSRAN_SCHED_NR_HELPERS_H
|
||
3 years ago
|
|
||
3 years ago
|
#include "sched_nr_cfg.h"
|
||
3 years ago
|
|
||
|
namespace srsenb {
|
||
|
namespace sched_nr_impl {
|
||
|
|
||
3 years ago
|
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
|
||
|
|
||
3 years ago
|
bool fill_dci_rar(prb_interval interv, const bwp_params& bwp_cfg, srsran_dci_dl_nr_t& dci);
|
||
3 years ago
|
|
||
3 years ago
|
class slot_ue;
|
||
|
|
||
3 years ago
|
/// Generate PDCCH DL DCI fields
|
||
|
void fill_dl_dci_ue_fields(const slot_ue& ue,
|
||
|
const bwp_params& bwp_cfg,
|
||
|
uint32_t ss_id,
|
||
|
srsran_dci_location_t dci_pos,
|
||
|
srsran_dci_dl_nr_t& dci);
|
||
|
|
||
|
/// Generate PDCCH UL DCI fields
|
||
|
void fill_ul_dci_ue_fields(const slot_ue& ue,
|
||
|
const bwp_params& bwp_cfg,
|
||
|
uint32_t ss_id,
|
||
|
srsran_dci_location_t dci_pos,
|
||
|
srsran_dci_ul_nr_t& dci);
|
||
3 years ago
|
|
||
3 years ago
|
} // namespace sched_nr_impl
|
||
|
} // namespace srsenb
|
||
|
|
||
3 years ago
|
#endif // SRSRAN_SCHED_NR_HELPERS_H
|