An error occurred fetching the project authors.
  1. 01 Feb, 2021 1 commit
  2. 06 Aug, 2020 1 commit
  3. 01 Jun, 2020 1 commit
  4. 13 May, 2020 1 commit
  5. 05 Mar, 2020 2 commits
  6. 22 Jan, 2020 1 commit
  7. 04 Nov, 2019 1 commit
  8. 14 Oct, 2019 1 commit
  9. 14 Sep, 2019 1 commit
  10. 09 Sep, 2019 1 commit
  11. 29 Aug, 2019 1 commit
  12. 28 Aug, 2019 1 commit
  13. 23 Aug, 2019 1 commit
  14. 18 Jun, 2019 1 commit
  15. 11 Jun, 2019 1 commit
  16. 11 Apr, 2019 1 commit
  17. 04 Apr, 2019 1 commit
  18. 07 Jan, 2019 1 commit
    • Cedric Roux's avatar
      fix a lot of file mode · aea6b4b5
      Cedric Roux authored
      For whatever reason most of the files had their permission
      changed from 644 to 755, which is not wanted.
      aea6b4b5
  19. 21 Dec, 2018 1 commit
  20. 19 Dec, 2018 1 commit
  21. 17 Dec, 2018 1 commit
  22. 10 Dec, 2018 1 commit
  23. 27 Nov, 2018 1 commit
  24. 06 Nov, 2018 1 commit
  25. 02 Nov, 2018 1 commit
  26. 30 Oct, 2018 1 commit
  27. 11 Oct, 2018 1 commit
  28. 09 Oct, 2018 2 commits
  29. 17 Aug, 2018 1 commit
    • Cedric Roux's avatar
      T: bug fixes for the T cache · 475d5eb8
      Cedric Roux authored
      - 'busy' has to be handled in a more atomic fashion to avoid crazy
        runtime race conditions
      - the basic simulator is too fast sometimes; rewrite the accesses to
        the T cache to avoid there again crazy behaviors
      
      Hopefully that's better...
      475d5eb8
  30. 13 Aug, 2018 1 commit
  31. 10 Aug, 2018 1 commit
  32. 30 Jul, 2018 1 commit
  33. 20 Jul, 2018 1 commit
  34. 02 May, 2018 1 commit
    • Cedric Roux's avatar
      basic simulator: initial release · 6cb04bb4
      Cedric Roux authored
      This commit introduces a 'basic simulator'.
      
      This basic simulator is made of:
      - the standard eNB code using a special driver that mimics the USRP driver
      - the standard UE code using a special driver that mimics the USRP driver
      - no channel simulation
      - some special code to deal with faster-than-realtime behaviour of this
        basic simulator
      
      It connects one UE to one eNB. It requires an EPC, populated with the
      correct configuration for the UE.
      
      This is the initial release and may contain bugs (most probably race
      conditions due to the faster-than-realtime behaviour).
      
      To use it, see the documentation at:
          targets/ARCH/tcp_bridge/README.tcp_bridge_oai.
      
      It has been tested with 25, 50 and 100 RBs, FDD mode.
      (No check at all has been done to know if it could work in TDD mode.)
      6cb04bb4
  35. 12 Apr, 2018 1 commit
  36. 06 Apr, 2018 1 commit
  37. 05 Apr, 2018 1 commit
  38. 15 Jan, 2018 1 commit
    • Cedric Roux's avatar
      Fix NFAPI integration · 922b5b59
      Cedric Roux authored
      This commit fixes issues introduced by the previous commit.
      
      Summary of work:
      - cleanup:
        - fix LOG_XX to be less verbose
        - fix cmake_targets/CMakeLists.txt
        - fix oaienv
        - remove dead code
      - bug fixes:
        - in openair1/SCHED/fapi_l1.c we had:
            eNB->pdcch_vars[subframe&1].num_dci           = number_dci;
          should be:
            eNB->pdcch_vars[subframe&1].num_dci           = 0;
          This bug let the PHY send more DCIs than what should have been
          sent because num_dci is incremented later on in the code.
          This fix may be a problem for fapi mode, to be checked.
        - add new T VCD traces
        - revert openair1/PHY/TOOLS/file_output.c to 'develop' version
        - remove thread_id in logRecord/logRecord_mt
        - revert (and adapt) configuration files
        - be careful when doing frame++, we need to % 1024
        - revert target_rx_power in openair2/LAYER2/MAC/eNB_scheduler_ulsch.c
      - NFAPI:
        - the open-nFAPI code has been included in the repository. See nfapi/README.
          Maybe we should "git clone" the Cisco repository instead. We have to be
          careful of availability though.
      
      What has been tested:
      - monolithic eNB FDD 5/10MHz with one UE, iperf UDP/TCP uplink/downlink
      
      Anything else may fail to work, especially the FAPI mode, which has not
      been tested at all.
      922b5b59