1. 14 Mar, 2025 2 commits
    • Jaroslava Fiedlerova's avatar
      Merge remote-tracking branch 'origin/fix_numIter' into integration_2025_w11 (!3296) · 830ceac0
      Jaroslava Fiedlerova authored
      fix(nrLDPC_decoder): fix numIter increment
      
      The logs of ./nr_ulsim -n100 -m19 -s12 -S12 -z2 -L4 were showing that sometimes
      the decoding of one segment was failing while the CRC check succeeded. This was
      happening because the iteration counter numIter was not properly managed so that
      when the last iteration was successful to decode the segment still numIter at
      the exit was equal to numMaxIter plus 1 so that decoding was considered to have
      failed. In other words the last iteration if it occured was always wasted.
      
      This commit offers to solve this problem by simply moving the iteration counter
      increment at the end of the iteration loop while remaining careful at fixing the
      tests relying on this counter.
      
      Post-Scriptum:
      After a first review, we decided to make the counter more standard from a C code
      perspective. The counter now counts from 0 to numMaxIter minus 1. If it reaches
      numMaxIter, it means that decoding was unsuccessful.
      830ceac0
    • Jaroslava Fiedlerova's avatar
      Merge remote-tracking branch 'origin/remove_b4_assertion' into integration_2025_w11 !3303 · 950ee0a4
      Jaroslava Fiedlerova authored
      remove wrong assertion for B4 PRACH format
      
      Introduced in !3088 (merged)
      950ee0a4
  2. 12 Mar, 2025 1 commit
    • Jaroslava Fiedlerova's avatar
      Merge branch 'integration_2025_w10' into 'develop' · 60b0c182
      Jaroslava Fiedlerova authored
      Integration: `2025.w10`
      
      See merge request oai/openairinterface5g!3299
      
      * !3265 Remove some unnecessary extern files
      * !3288 FeedbackDisabled removed from RA
      * !3294 Fix OAI UE uplink_frequency in FDD mode
      * !3282 Use common function to prepare DL PDUs in gNB RA
      * !3290 Fix get_nr_prach_info_from_index() for FDD and long format
      * !3244 Add F1 handover CI test
      * !3292 Ensure clean exit of NR UE
      * !3298 Preventing segmentation fault in print_rrc_meas (if reviewed and CI is OK)
      * !3297 Reset timing_advance on sync/re-sync
      * !3289 use slot type for slots in NR
      60b0c182
  3. 11 Mar, 2025 1 commit
  4. 10 Mar, 2025 6 commits
  5. 07 Mar, 2025 8 commits
  6. 06 Mar, 2025 3 commits
    • luis_pereira87's avatar
      Reset timing_advance on sync/re-sync · f765352b
      luis_pereira87 authored
      This prevents the UE to use an outdated timing_advance after a re-sync. It prevents the UE to send a PRACH with a wrong TA, thus preventing a RAPID mismatch in Msg2 (example: '[UE 0][RAPROC][0.0] Received RAR preamble (29) doesn't match the intended RAPID (30)')
      f765352b
    • luis_pereira87's avatar
      Fix OAI UE uplink_frequency in FDD mode · 1d84b6d0
      luis_pereira87 authored
      1d84b6d0
    • Romain Beurdouche's avatar
      fix(nrLDPC_decoder): fix numIter increment · b6bedf12
      Romain Beurdouche authored
      The logs of `./nr_ulsim -n100 -m19 -s12 -S12 -z2 -L4` were showing that sometimes the decoding of one segment was failing while the CRC check succeeded.
      This was happening because the iteration counter `numIter` was not properly managed so that when the last iteration was successful to decode the segment
      still `numIter` at the exit was equal to `numMaxIter` plus 1 so that decoding was considered to have failed.
      In other words the last iteration if it occured was always wasted.
      
      This commit offers to solve this problem by simply moving the iteration counter increment at the end of the iteration loop
      while remaining careful at fixing the tests relying on this counter.
      b6bedf12
  7. 05 Mar, 2025 1 commit
  8. 04 Mar, 2025 3 commits
  9. 03 Mar, 2025 15 commits