An error occurred fetching the project authors.
  1. 05 Dec, 2019 1 commit
  2. 23 Sep, 2019 1 commit
  3. 17 Jul, 2019 1 commit
  4. 16 Jul, 2019 2 commits
  5. 08 Jun, 2019 1 commit
  6. 26 Mar, 2019 1 commit
  7. 23 Mar, 2019 1 commit
  8. 08 Mar, 2019 1 commit
  9. 22 Feb, 2019 1 commit
  10. 14 Feb, 2019 1 commit
  11. 18 Jan, 2019 1 commit
    • Robert Schmidt's avatar
      F1AP: when UL_sync failure, send UEContextRelReq · 7df82575
      Robert Schmidt authored
      When a phone loses connection, it should not simply be removed but first
      CU should be informed which will send a ContextRelCmd. Correspondingly,
      when the RRC releases the UE, it does not send a UE Context Release Req
      7df82575
  12. 07 Dec, 2018 1 commit
  13. 16 Nov, 2018 1 commit
  14. 07 Nov, 2018 1 commit
  15. 25 Oct, 2018 1 commit
  16. 17 Oct, 2018 1 commit
  17. 23 Sep, 2018 1 commit
  18. 21 Sep, 2018 2 commits
  19. 16 Sep, 2018 1 commit
  20. 15 Sep, 2018 2 commits
  21. 13 Sep, 2018 1 commit
  22. 31 Aug, 2018 1 commit
    • Bing-Kai Hong's avatar
      F1 & MAC: · 3021cf11
      Bing-Kai Hong authored
      1. Fix UE_CONTEXT_SETUP_REQUEST and CONTEXT_MODIFICATION_REQUEST encode/decode
      2. Add gNB_DU_CONFIGURATION_UPDATE and gNB_CU_CONFIGURATION_UPDATE procedure
      3. Add C_RNTI_TO_BIT_STRING function
      4. Add INITIAL_UL_RRC_MESSAGE_TRANSFER procedure and with mac_du_data_ind (MSG3)
      5. Add GNB-CUSystemInformation extension part for the F1SetupResponse procedure
      3021cf11
  23. 27 Aug, 2018 2 commits
  24. 25 Aug, 2018 1 commit
  25. 24 Aug, 2018 1 commit
  26. 30 Jul, 2018 2 commits
  27. 13 Jul, 2018 1 commit
    • Bi-Ruei, Chiu's avatar
      Use an un-official community collaboration version of asn1c · a247907d
      Bi-Ruei, Chiu authored
      1. It's no need to modify LTE-RRC's ASN.1 file for enabling option group
         feature in generate_asn1.
      2. It's no need to patch the C header files generated from
         LTE-RRC/S1AP/X2AP's ASN.1 in fix_asn1.
      3. It's no need to pre-process S1AP/X2AP's ASN.1 for enabling information
         object class feature by asn1tostruct.py.
      
      This commit requires an un-official version of asn1c which are
      collaboration of asn1c community members and `build_helper` is modified
      in this commit accordingly :
      
        https://github.com/brchiu/asn1c/tree/velichkov_s1ap_plus_option_group
      
      This asn1c can also convert ASN.1 of 5G NR RRC (38.331, v15.1.0) and
      generate C files with -findirect-choice command line option without
      tweaking ASN.1 file.
      
      Examples for how to use this asn1c for S1AP are in S1AP files, e.g.
      s1ap_eNB_nas_procedures.c and s1ap_eNB_handler.c.
      
      There is an modified openair-cn (based on tag 0.5.0) with this new asn1c at :
      
        https://github.com/brchiu/openair-cn/tree/new-asn1c
      
      Basic S1AP interaction and data transfer operation between OAI eNB and
      this modified openair-cn has been tested.
      
      Note: Community version of asn1c is keeping evolved to provide better usage.
      a247907d
  28. 25 Jun, 2018 1 commit
  29. 22 Apr, 2018 1 commit
  30. 08 Apr, 2018 1 commit
  31. 27 Mar, 2018 1 commit
  32. 12 Feb, 2018 1 commit
  33. 01 Feb, 2018 1 commit
  34. 21 Jan, 2018 1 commit
  35. 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