SRSUE: fix signal ready issue

This commit is contained in:
Xavier Arteaga 2020-03-13 10:10:08 +01:00 committed by Xavier Arteaga
parent caf7b514a0
commit 6c4e807141
1 changed files with 1 additions and 1 deletions

View File

@ -242,7 +242,7 @@ void sf_worker::work_imp()
// Loop through all carriers. Do in reverse order since control information from SCells is transmitted in PCell
for (int carrier_idx = phy->args->nof_carriers - 1; carrier_idx >= 0; carrier_idx--) {
tx_signal_ready = cc_workers[carrier_idx]->work_ul(&uci_data);
tx_signal_ready |= cc_workers[carrier_idx]->work_ul(&uci_data);
// Set signal pointer based on offset
cf_t* b = cc_workers[carrier_idx]->get_tx_buffer(0);