Fix NR common PDSCH Resource allocation count

This commit is contained in:
Xavier Arteaga 2021-04-09 21:33:04 +02:00 committed by Andre Puschmann
parent f30f3e0239
commit bc1b14efea
1 changed files with 1 additions and 1 deletions

View File

@ -665,7 +665,7 @@ bool rrc_nr::apply_dl_common_cfg(const asn1::rrc_nr::dl_cfg_common_s& dl_cfg_com
srsran_sch_time_ra_t common_time_ra;
if (make_phy_common_time_ra(pdsch_cfg_common.pdsch_time_domain_alloc_list[i], &common_time_ra) == true) {
phy_cfg.pdsch.common_time_ra[i] = common_time_ra;
phy_cfg.pdsch.nof_common_time_ra = i;
phy_cfg.pdsch.nof_common_time_ra = i + 1;
} else {
logger.warning("Warning while building common_time_ra structure");
return false;