Skip to content
Snippets Groups Projects
  1. Mar 17, 2025
  2. Jan 23, 2025
  3. Jan 09, 2025
  4. Dec 16, 2024
  5. Dec 04, 2024
  6. Nov 27, 2024
  7. Nov 17, 2024
  8. Nov 12, 2024
  9. Nov 07, 2024
  10. Oct 25, 2024
  11. Oct 17, 2024
  12. Aug 28, 2024
    • Robert Schmidt's avatar
      Avoid complete rebuild on cmake run with git info change · 8bffd166
      Robert Schmidt authored
      Before this commit, the following will trigger a complete rebuild:
      
      - create another git name (git checkout -b test)
      - run cmake again manually (cmake ..)
      - run ninja again
      
      The top-level CMakeLists.txt uses add_definitions() to add git
      information to all targets; if some git information changes, this will
      mark all command lines as dirty, triggering the build.
      
      There is an easy solution: instead of passing this information on the
      command line, pass it in a header. This commit uses configure_file() to
      generate a file oai_version.h in the build directory with the same
      information. Various sources files, e.g., main executables, use this to
      output the same information as before. It is then also not necessary to
      use header guards, as cmake takes care to create this file.
      
      If cmake is re-run, it will update the header, and trigger only files
      including this header will be rebuilt (which can be shown with the above
      stpes). The information passed is the same as before, and updates the
      information when the old method would have updated it.
      8bffd166
  13. Jul 30, 2024
  14. Jun 27, 2024
  15. Apr 12, 2024
  16. Mar 06, 2024
  17. Mar 01, 2024
    • 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
  18. Feb 21, 2024
  19. Feb 03, 2024
    • Robert Schmidt's avatar
      Remove superfluous function, rename variable · d5257ca8
      Robert Schmidt authored
      The function rrc_gNB_process_RRCReconfigurationComplete() does almost
      nothing, we can delete it.
      
      The variable name ue_reconfiguration_after_reestablishment_counter is
      misleading, as it counts all reconfigurations; rename to make it clear.
      d5257ca8
  20. Jan 31, 2024
  21. Nov 10, 2023
  22. Oct 26, 2023
  23. Oct 02, 2023
  24. Aug 30, 2023
  25. Aug 12, 2023
  26. Jul 10, 2023
  27. Jun 08, 2023
Loading