SRSUE avoid NR SR in UCI for PUSCH

This commit is contained in:
Xavier Arteaga 2021-04-23 16:56:33 +02:00 committed by Andre Puschmann
parent fb5dfb3a86
commit e1ff824cc2
1 changed files with 4 additions and 2 deletions

View File

@ -353,8 +353,10 @@ bool cc_worker::work_ul()
}
}
// Add SR to UCI data if available
phy->get_pending_sr(ul_slot_cfg.idx, uci_data);
// Add SR to UCI data only if there is no UL grant!
if (!has_ul_ack) {
phy->get_pending_sr(ul_slot_cfg.idx, uci_data);
}
// Add CSI reports to UCI data if available
phy->get_periodic_csi(ul_slot_cfg.idx, uci_data);