1. 07 Mar, 2024 3 commits
    • Robert Schmidt's avatar
      Use MAX_MOBILES_PER_GNB in 5G NR code · 7ea88335
      Robert Schmidt authored
      NUMBER_OF_UE_MAX is a 4G constant, use 5G one instead
      7ea88335
    • Robert Schmidt's avatar
      remove unused UE_PF_PO and ue_pf_po_mutex · 70be0538
      Robert Schmidt authored
      They use 4G NUMBER_OF_UE_MAX, which is not supposed to be present in 5G.
      Further, the mutex and variable are global state; for Paging, we should
      use F1.
      70be0538
    • Robert Schmidt's avatar
      SRS config: make explicit that > 30 UEs don't work, handle gracefully at runtime · 885611cd
      Robert Schmidt authored
      We can only support up to 30 UEs for SRS. In this commit, we change:
      - if the total number of UEs is > 32, throw error during compilation to
        raise awareness (32 so that a multiple of two still works, everything
        else is confusing, see also next point)
      - during runtime, handle gracefully if UID is 30 or 31 to not abort (we
        can simply not allocate SRS resources)
      
      Also, refactor config_srs() to always give back new memory; the code is
      shorter and clearer. Rename to get_contig_srs() to make it explicit.
      885611cd
  2. 05 Mar, 2024 20 commits
  3. 04 Mar, 2024 11 commits
  4. 01 Mar, 2024 6 commits
    • Guido Casati's avatar
      Moved nr_reconfigure_sdap_entity to SDAP module · b431e144
      Guido Casati authored
      - improves code readability and maintainability
      b431e144
    • Guido Casati's avatar
      Updated and enhanced channel simulation documentation · 4cfba89e
      Guido Casati authored
      - centralized channel simulation documentation in channel_simulation.md
      - removed redundant documentation repeated in multipled .md files
      - updated links
      - removed obsolete information
      - introduced mermaid flowchart for rfsim
      - added missing information about available options and usage
      - deleted:    ../../../openair1/SIMULATION/TOOLS/DOC/devusage.md
      - deleted:    ../../../openair1/SIMULATION/TOOLS/DOC/rtusage.md
      - deleted:    ../../../openair1/SIMULATION/TOOLS/DOC/arch.md
      
      related to issue #739
      4cfba89e
    • Robert Schmidt's avatar
      CI: RFsim tests: Wait for IP · 9af386c7
      Robert Schmidt authored
      Ensure that the UE has an IP address before continuing the test.
      Otherwise, it might happen we ping before the UE is connected.
      
      Do not do this in do-ra and phytest, as they use --noS1, which implies
      statically assigned IP address, so IP address check always succeeds(!).
      9af386c7
    • Robert Schmidt's avatar
      CI: Make RFsim start-up faster · e845a9c3
      Robert Schmidt authored
      Make RFsim start up faster by starting core and RAN start at the same
      time. This speeds up because we do not wait for "healthy" containers
      serially, but parallely.
      
      For the RAN, it is safe to start gNB and UE at the same time in SA mode
      (as the UE will only attach once the radio, and hence the full gNB, is
      ready).
      
      We do not start in parallel in do-ra and phytest, as in these modes the
      gNB first has to write a UE-specific configuration file. If we start
      both gNB and UE at the same time, the UE might try to read the file
      before it is written, leading to a failure.
      e845a9c3
    • Laurent THOMAS's avatar
    • Jaroslava Fiedlerova's avatar