Skip to content

Commit 841c365

Browse files
ddriescodebot
authored andcommitted
phy_low: fix PRACH concurrency issue with insufficient workers
1 parent d204f12 commit 841c365

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

apps/units/flexible_o_du/split_8/helpers/ru_sdr_config_translator.cpp

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,8 +66,9 @@ static lower_phy_configuration generate_low_phy_config(const flexible_o_du_ru_co
6666
// Get lower PHY system time throttling.
6767
out_cfg.system_time_throttling = ru_cfg.expert_cfg.lphy_dl_throttling;
6868

69-
// Currently, only one concurrent PRACH request is supported.
70-
out_cfg.max_nof_prach_concurrent_requests = 1;
69+
// Set max concurrent PRACH requests to the max processing delay (in slots) plus 2 extra slots: one for sample
70+
// collection and one for potential processing delay.
71+
out_cfg.max_nof_prach_concurrent_requests = max_processing_delay_slot + 2;
7172

7273
// Apply gain back-off to account for the PAPR of the signal and the DFT power normalization.
7374
out_cfg.amplitude_config.input_gain_dB =

tests/e2e/tests/ping.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -593,7 +593,6 @@ def test_zmq_fr2(
593593
time_alignment_calibration=0,
594594
ue_stop_timeout=3,
595595
pdcch_log=True,
596-
warning_as_errors=False,
597596
always_download_artifacts=True,
598597
)
599598

0 commit comments

Comments
 (0)