1. 27 Jan, 2025 31 commits
  2. 22 Jan, 2025 7 commits
  3. 16 Jan, 2025 1 commit
    • Robert Schmidt's avatar
      Merge branch 'integration_2025_w03' into 'develop' · 10e07bc6
      Robert Schmidt authored
      Integration: `2025.w03`
      
      See merge request oai/openairinterface5g!3206
      
      * !3167 remove calls to clear SIMD registers, that was a historical issue
      * !3179 UE statistics improvements
      * !3193 Remove spinlock from threadpool task return
      * !3195 UE MAC: in phy-test/do-ra, fill TB randomly
      * !3201 T tracer: minor fixes for compilation
      * !3204 CI: Increase number of test trials for timing tests
      * !3034 Delay compensation for PUCCH2
      * !3205 Fix calculation of RSSI in pucch_rx.c
      10e07bc6
  4. 15 Jan, 2025 1 commit
    • Robert Schmidt's avatar
      Merge remote-tracking branch 'origin/pucch-rssi-fix' into integration_2025_w03 (!3205) · 998d8c94
      Robert Schmidt authored
      Fix calculation of RSSI in pucch_rx.c
      
      Fix two issues with RSSI calculation in PUCCH:
      
      - RSSI was calculated using partial sum instead of average of squared samples.
      - There was a missing parentheses pair which causes the RSSI value to underflow.
      
      The proper way to calculate power in dBFS is
      
          let signal_energy = average of squared samples of received signal over resource elements, antennas and symbols under measurement
      
      then:
      
          rssi[dBFS] = -10log10(max_sample^2 / signal_energy),
      
      or (to avoid division):
      
          rssi[dBFS] = -(10log10(max_sample^2) - 10log10(signal_energy))
      998d8c94