Skip to content

Commit 4c32359

Browse files
committed
du: fix maximum PUSCH slot concurrency to FAPI maximum
1 parent 784e992 commit 4c32359

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

apps/units/flexible_o_du/o_du_low/du_low_config_translator.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ static void generate_du_low_config(srs_du::du_low_config&
100100
// size to one. Otherwise, it is set to the maximum number of PUSCH transmissions that can be scheduled in one slot.
101101
unsigned max_pusch_concurrency = 1;
102102
if (du_low.expert_execution_cfg.threads.nof_pusch_decoder_threads > 0) {
103-
max_pusch_concurrency = cell.max_puschs_per_slot;
103+
max_pusch_concurrency = MAX_PUSCH_PDUS_PER_SLOT;
104104
}
105105

106106
upper_phy_cell.nof_slots_request_headroom = du_low.expert_phy_cfg.nof_slots_request_headroom;

0 commit comments

Comments
 (0)