Fix compile and other

This commit is contained in:
Xavier Arteaga 2021-04-16 19:43:22 +02:00 committed by Andre Puschmann
parent ed0929b46d
commit 53b38fccf9
2 changed files with 2 additions and 10 deletions

View File

@ -679,7 +679,6 @@ int srsran_ra_dl_dci_to_grant_nr(const srsran_carrier_nr_t* carrier,
pdsch_grant->tb[0].rv = dci_dl->rv;
pdsch_grant->tb[0].mcs = dci_dl->mcs;
pdsch_grant->tb[0].ndi = dci_dl->ndi;
pdsch_grant->tb[0].pid = dci_dl->pid;
// 5.1.4 PDSCH resource mapping
if (ra_dl_resource_mapping(carrier, slot, pdsch_hl_cfg, pdsch_cfg) < SRSRAN_SUCCESS) {

View File

@ -226,18 +226,11 @@ bool cc_worker::work_dl()
srsran_sch_cfg_nr_t pdsch_cfg = {};
srsran_pdsch_ack_resource_nr_t ack_resource = {};
if (phy->get_dl_pending_grant(dl_slot_cfg.idx, pdsch_cfg, ack_resource, pid)) {
// As HARQ processes are not implemented nor LDPC early-stop, retransmissions are disabled for performance reasons
if (pdsch_cfg.grant.tb[0].rv != 0) {
phy->set_pending_ack(dl_slot_cfg.idx, ack_resource, true);
logger.warning("PDSCH Retransmission with rv=%d not supported", pdsch_cfg.grant.tb[0].rv);
return true;
}
// Notify MAC about PDSCH grant
mac_interface_phy_nr::tb_action_dl_t dl_action = {};
mac_interface_phy_nr::mac_nr_grant_dl_t mac_dl_grant = {};
mac_dl_grant.rnti = pdsch_cfg.grant.rnti;
mac_dl_grant.pid = pdsch_cfg.grant.tb[0].pid;
mac_dl_grant.pid = pid;
mac_dl_grant.rv = pdsch_cfg.grant.tb[0].rv;
mac_dl_grant.ndi = pdsch_cfg.grant.tb[0].ndi;
mac_dl_grant.tbs = pdsch_cfg.grant.tb[0].tbs / 8;
@ -274,7 +267,7 @@ bool cc_worker::work_dl()
str_info_t str;
srsran_ue_dl_nr_pdsch_info(&ue_dl, &pdsch_cfg, &pdsch_res, str.data(), (uint32_t)str.size());
if (logger.info.enabled()) {
if (logger.debug.enabled()) {
str_extra_t str_extra;
srsran_sch_cfg_nr_info(&pdsch_cfg, str_extra.data(), (uint32_t)str_extra.size());
logger.info(pdsch_res.tb[0].payload,