An error occurred fetching the project authors.
  1. 24 Apr, 2018 1 commit
  2. 22 Apr, 2018 1 commit
  3. 08 Apr, 2018 1 commit
  4. 06 Mar, 2018 1 commit
  5. 22 Feb, 2018 2 commits
  6. 20 Feb, 2018 1 commit
  7. 14 Feb, 2018 1 commit
  8. 13 Feb, 2018 1 commit
  9. 12 Feb, 2018 1 commit
  10. 06 Feb, 2018 1 commit
  11. 05 Feb, 2018 1 commit
  12. 01 Feb, 2018 1 commit
  13. 31 Jan, 2018 2 commits
  14. 27 Jan, 2018 1 commit
  15. 26 Jan, 2018 2 commits
  16. 24 Jan, 2018 1 commit
  17. 11 Jan, 2018 1 commit
  18. 08 Jan, 2018 1 commit
  19. 07 Dec, 2017 1 commit
  20. 28 Nov, 2017 1 commit
  21. 14 Nov, 2017 1 commit
  22. 09 Nov, 2017 1 commit
  23. 04 Nov, 2017 1 commit
  24. 23 Oct, 2017 2 commits
  25. 10 Oct, 2017 1 commit
  26. 08 Oct, 2017 1 commit
  27. 04 Oct, 2017 1 commit
    • Cedric Roux's avatar
      bugfix: fix CQI reporting · c97e0546
      Cedric Roux authored
      - don't use o_flip anymore in ulsch_decoding
      - remove dl_cqi from eNB_UE_STATS
      - put dl_cqi[NFAPI_CC_MAX] in UE_sched_ctrl
      - adapt code for this dl_cqi change (from eNB_UE_STATS to UE_sched_ctrl)
      - extract_pusch_csi has been fixed for CQI_ReportModeAperiodic_rm30,
        the others need to be done. Program will exit if one uses them.
        Not sure if setting sched_ctl->dl_cqi[CC_idP]  has to be done in this
        function...
      c97e0546
  28. 01 Oct, 2017 1 commit
  29. 24 Sep, 2017 1 commit
  30. 22 Sep, 2017 1 commit
  31. 14 Sep, 2017 1 commit
  32. 17 Aug, 2017 1 commit
  33. 13 Aug, 2017 1 commit
  34. 08 Aug, 2017 1 commit
  35. 27 Jul, 2017 1 commit
    • Cedric Roux's avatar
      bugfix: fix bug "Unknown UE_id for rnti" · 8d5901c8
      Cedric Roux authored
      This bug happens when we detect uplink failure for one UE.
      In this case, a DCI format 1A is sent to the UE to ask it
      to do random acces.
      
      The way this DCI is generated was not compatible with how
      the software is organized. It was expected that the DCI are
      added (with add_ue_spec_dci and add_common_dci) in a very
      specific order: first all DCIs in common space are added
      (with add_common_dci) then all DCIs in UE specific space
      are added (with add_ue_spec_dci).
      
      The problem was that the DCI format 1A DCI sent to the UE
      for it to do random access is added (with add_ue_spec_dci)
      before the DCIs in common space.
      
      That totally messed up the logic in add_common_dci and
      add_ue_spec_dci.
      
      The solution is to get rid of Num_common_dci and Num_ue_spec_dci,
      replace those two counters by only one (Num_dci) and add
      "search_space" in the dci_alloc structure to be used later by
      the function "allocate_CCEs" when calling "get_nCCE_offset".
      
      The software had to be adapted to the new variables, everywhere.
      
      I am not sure that the simulators work. It seems that some
      of them didn't use Num_common_dci and Num_ue_spec_dci to
      decide on what space (common or UE specific) to put the DCI,
      but relied on the rnti (comparing with SI_RNTI). To be tested
      properly.
      
      The modified simulators are:
        - openair1/SIMULATION/LTE_PHY/dlsim.c
        - openair1/SIMULATION/LTE_PHY/dlsim_tm4.c
        - openair1/SIMULATION/LTE_PHY/dlsim_tm7.c
        - openair1/SIMULATION/LTE_PHY/framegen.c
        - openair1/SIMULATION/LTE_PHY/pdcchsim.c
        - openair1/SIMULATION/LTE_PHY/syncsim.c
      8d5901c8
  36. 24 Jul, 2017 1 commit