- 14 Nov, 2025 10 commits
-
-
Robert Schmidt authored
The next commit will remove msgDataTx. We can therefore not use msgDataTx to retain the PDSCH/DLSCH variables, and move them to the gNB. Note that the only reason for NR_gNB_DLSCH_t after this commit is to hold various large buffers (c, b, f). Future work could be done to remove this, in which case the array inside PHY_VARS_gNB could be deleted. On this occasion, clean up the use of init_DLSCH_struct() and reset_DLSCH_struct() (renamed destroy_DLSCH_struct()) and centralize their call in phy_init_nr_gNB()/phy_free_nr_gNB(), and correct simulators accordingly.
-
Robert Schmidt authored
-
Robert Schmidt authored
A later commit will remove "msgTx" altogether. Push it out from L1 functions.
-
Robert Schmidt authored
-
Robert Schmidt authored
DLSCH encoding is not concerned with HARQ processes directly. Instead, it gets the redundancy version and encodes a specific redundancy version for a given TB. The rest is up to the MAC, the L1 is stateless in that regard. Hence, remove the HARQ type and put it into DLSCH, which also simplifies the code elsewhere.
-
Robert Schmidt authored
unav_res is already computed in nr_generate_pdsch(), and then used inside of nr_dlsch_encoding() right after.
-
Robert Schmidt authored
-
Robert Schmidt authored
Similarly to the parent commit, simplify the array type to the FAPI PDU towards further refactoring, and encapsulate the code in a function for easier reuse in a later refactoring step. Note on ZP-CSI: after this commit, we continue treating CSI PDUs. The prior code was returning, which I think is wrong (as this information is only for the currently treated CSI-RS PDU).
-
Robert Schmidt authored
There is no point in tracking the "active" state: the SSB PDU will be sent from MAC to L1, encoded, and then "discarded" (by marking the number of SSB PDUs as 0). Hence, remove this intermediate type.
-
Robert Schmidt authored
-
- 13 Nov, 2025 2 commits
-
-
Robert Schmidt authored
Both (DL) PDCCH and UL PDCCH PDU types are fundamentally of the same type, so correct the array's type to facilitate refactoring later (a later commit will reuse a single "generate DCI" function for both cases).
-
Robert Schmidt authored
-
- 12 Nov, 2025 3 commits
-
-
Robert Schmidt authored
-
Robert Schmidt authored
Unused code
-
Robert Schmidt authored
Using nFAPI introduces additional delays. At the same time, RFsim does not run in real-time, and we can allow a low sl_ahead, as RFsim will "wait" for the gNB. Therefore, reduce sl_ahead to ensure that the response window does not run out during handling of RA in nFAPI.
-
- 06 Nov, 2025 8 commits
-
-
Jaroslava Fiedlerova authored
Integration `2025.w45` * !3736 fix bugs in scope for pdcch, and optimize cpu cost of pdcch decoding * !3743 NR UE: fix PDCCH LLR indexing for different search space RB sizes * !3739 Bugfix: save old tunnel info to remain the user plane connection while rolling back to source DU due to handover failure * !3742 Simplify node management in CI, handle SIGINT * !3670 PRS bug fix and CI Integration * !3746 Fix unsigned to signed decoding parameters to allow for 'no affinity'/'no pin' threads to CPUs * !3738 CI: Add new Jenkinsfiles Closes #984 and #1021 See merge request oai/openairinterface5g!3744
-
Jaroslava Fiedlerova authored
CI: Add unified Jenkinsfile for all test pipelines This MR introduces a single Jenkinsfile to cover all current CI test pipelines Improvements: - correct reporting of the start timestamp in the HTML report - harmonize log collection - always collect as test_logs_${env.BUILD_ID}.zip -
Jaroslava Fiedlerova authored
Combine Jenkinsfile and Jenkinsfile-oc from parrent commit into a single file.
-
Jaroslava Fiedlerova authored
Fix unsigned to signed decoding parameters to allow for 'no affinity'/'no pin' threads to CPUs By default, 'L1_rx_thread_core', 'L1_tx_thread_core', 'ru_thread_core' are set to '-1' but the values were decoded from config file as unsigned instead of signed types, thus, it was not allowing to set them with '-1' from config file.
-
Jaroslava Fiedlerova authored
Merge remote-tracking branch 'origin/prs_bug_fix_and_integrate_to_ci' into integration_2025_w45 (!3670) PRS bug fix and CI Integration - Fix the bug in PRS channel estimation while copying memory to compute the impulse response - Integrate PRS testing to CI
-
Jaroslava Fiedlerova authored
Simplify node management in CI, handle SIGINT - Make a single <node> XML step entry common to all XML steps to harmonize code - Handle SIGINT to make it possible to more easily stop the CI script.
-
Jaroslava Fiedlerova authored
Bugfix: save old tunnel info to remain the user plane connection while rolling back to source DU due to handover failure This MR closes issue #984 that UE lost the data plane connection while rolling back to the source DU due to handover failure.
-
Jaroslava Fiedlerova authored
NR UE: fix PDCCH LLR indexing for different search space RB sizes After !3603 (merged), when multiple search spaces have different CORESET configurations (different number of RBs), the LLR buffer stride must be calculated based on the maximum RB size across all search spaces, not the current search space's RB size. The LLR buffer is allocated with size based on get_pdcch_max_rbs(), but the demapping function was using coreset_nbr_rb (current search space) for symbol stride calculation, causing incorrect LLR extraction when search spaces have different RB configurations. This MR tries to fix it. Closes #1021
-
- 05 Nov, 2025 10 commits
-
-
luis_pereira87 authored
By default, 'L1_rx_thread_core', 'L1_tx_thread_core', 'ru_thread_core' are set to '-1' but the values were decoded from config file as unsigned instead of signed types, thus, it was not allowing to set them with '-1' from config file
-
Robert Schmidt authored
-
Jaroslava Fiedlerova authored
Use the bash script from a parent commit to verify PRS functionality.
-
Rakesh Mundlamuri authored
This commit inputs several distances at once and obtain the summary of successful and failed tests. We look for the number of successful tests that are geater than 0. We do that here since we sometimes dont receive a response for a telnet command from the rfsim although the command is applied. This is related to the queing telnet commands in the rfsim. The script for the distances 50, 100 and 150 are called as follows, ./set-and-verify-distance-prs.sh 50 100 150 The summary can be viewed as follows, ==================== SUMMARY ==================== Total tests run : 3 Successful tests: 3 Failed tests : 0 =================================================
-
Jaroslava Fiedlerova authored
-
rakesh mundlamuri authored
Set RFsim (DL) distance and use PRS to estimate the new distance. This is verified by comparing the distance set in RFsim with the distance reported through ToA estimation at the UE. Note that since RFsim telnet output is asynchronous (it uses a queue internally), we use grep --max-count 1 to wait for the matching line, together with ncat --idle 0.3 to keep ncat open for some time. The --max-count option will terminate grep after the first occurrence. For this to work reliably, we need to use grep <(echo | ncat) as opposod to simply echo | ncat | grep, as the latter does not seem to reliably make grep exit after the occurrence. Co-authored-by:Robert Schmidt <robert.schmidt@openairinterface.org>
-
Robert Schmidt authored
-
Robert Schmidt authored
Protect with mutex to allow reading from another thread.
-
Robert Schmidt authored
In a future commit, we will look up the maximum ToA over the last transmissions. Introduce a buffer in which we write the last 16 measurements.
-
Jaroslava Fiedlerova authored
fix bugs in scope for pdcch, and optimize cpu cost of pdcch decoding fix bugs in scope for pdcch, and optimize cpu cost of pdcch decoding by not processing useless samples in one symbol
-
- 04 Nov, 2025 2 commits
-
-
alexjiao authored
When multiple search spaces have different CORESET configurations (different number of RBs), the LLR buffer stride must be calculated based on the maximum RB size across all search spaces, not the current search space's RB size. The LLR buffer is allocated with size based on get_pdcch_max_rbs(), but the demapping function was using coreset_nbr_rb (current search space) for symbol stride calculation, causing incorrect LLR extraction when search spaces have different RB configurations.
-
Chieh-Chun Chen authored
Bugfix: save old tunnel info to remain the user plane connection while rolling back to source DU due to F1 handover failure
-
- 03 Nov, 2025 5 commits
-
-
Robert Schmidt authored
Handle SIGINT and mark any subsequent steps as failed. Receiving SIGINT a second time will abort the script immediately (as is the case before this commit). Note that Python seems to relay the signal to the "controlled" process (e.g., Ping), which would return immediately with an error. So some steps like Ping will abort immediately, others (e.g., IdleSleep) will finish their step, and then the present logic will mark subsequent steps as failed.
-
Laurent THOMAS authored
move all antennas comon code of begining of nr_pdcch_channel_estimation to prepare the future move of the antenna loop above the serial call of functions to decode pdcch
-
Laurent THOMAS authored
-
Laurent THOMAS authored
fix bugs in scope for pdcch, and optimize cpu cost of pdcch decoding by not processing useless samples in one symbol
-
Robert Schmidt authored
"or None" would assign if the first term is false-y. But not specifying it would already lead to the variable being set to None.
-