An error occurred fetching the project authors.
  1. 28 Jul, 2019 1 commit
  2. 13 Jun, 2019 1 commit
  3. 04 Apr, 2019 1 commit
  4. 25 Feb, 2019 1 commit
  5. 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
  6. 29 Oct, 2018 1 commit
  7. 17 Oct, 2018 1 commit
  8. 30 Jul, 2018 1 commit
  9. 09 Apr, 2018 1 commit
  10. 08 Apr, 2018 1 commit
  11. 05 Feb, 2018 1 commit
  12. 22 Jan, 2018 2 commits
  13. 03 Dec, 2017 1 commit
  14. 29 Nov, 2017 1 commit
  15. 23 Oct, 2017 1 commit
  16. 08 Oct, 2017 1 commit
  17. 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
  18. 01 Oct, 2017 1 commit
  19. 25 Sep, 2017 1 commit
  20. 19 Sep, 2017 1 commit
  21. 14 Sep, 2017 1 commit
  22. 17 Aug, 2017 1 commit
  23. 15 Aug, 2017 1 commit
  24. 14 Aug, 2017 2 commits
  25. 13 Aug, 2017 1 commit
  26. 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
  27. 24 Jul, 2017 1 commit
  28. 19 Jul, 2017 1 commit
  29. 06 Jul, 2017 1 commit
  30. 18 May, 2017 1 commit
  31. 17 Apr, 2017 1 commit
  32. 12 Apr, 2017 1 commit
  33. 08 Mar, 2017 1 commit
  34. 06 Jan, 2017 1 commit
    • Wilson W.K. Thong's avatar
      fix incorrect PUCCH format causing no SR received by eNB in TDD · 2e7c28a5
      Wilson W.K. Thong authored
      fix incorrect fss_pusch calculation
      fix the incorrrect HARQ-PID checking
      remove incorrect checking on downlink DCI HARQ PID value
      fix incorrect downlink ACK/NACK feedback procedures in TDD
      fix no activating PDSCH decoding when DL-DCI is indicating a downlink retransmission
      
      see issue #176
      2e7c28a5
  35. 12 Dec, 2016 2 commits
  36. 21 Nov, 2016 1 commit
    • GabrirelCouturier's avatar
      [OAI-UE] several fixes in OAI-UE · 9c4cee34
      GabrirelCouturier authored
                 1- implement max harq retrans
                 2- bug in harqId > 1 for dci format 1A
                 3- wrong G computation
                 4- bug in harq UL for scheduling flag
                 5- initial sync, limit freq offset to 150Hz
      9c4cee34
  37. 18 Nov, 2016 1 commit
    • Cedric Roux's avatar
      hotfix: correct PHICH generation · 64615dcc
      Cedric Roux authored
      The PHICH generation is wrong.
      HARQ process X is uplink scheduled at TTI n.
      At TTI n+4 the eNB receives the data.
      At TTI n+8 the eNB sends ACK/NACK on the PHICH.
      
      The problem is that PHICH generation is done after scheduling.
      And PHICH generation uses "first_rb" and "n_DMRS" to compute
      "ngroup_PHICH" and "nseq_PHICH".
      
      So at TTI n+8 if the eNB has reused the HARQ process X for
      a new uplink scheduling the values "first_rb" and "n_DMRS"
      may have changed.
      
      We need to use the previous values.
      
      One solution would have been to do PHICH generation before
      scheduling. The problem is that "generate_phich_top" does more
      than PHICH generation. It has to setup parameters to sort of
      "emulate" a DCI0 in case of retransmission scheduled without
      DCI0. So part of it has to be done after scheduling. We would
      have to split the function.
      
      The simple adopted fix is to store old values of "first_rb"
      and "n_DMRS" and use those values in "generate_phich_top".
      
      This fix has only been tested with FDD. TDD may miserably fail.
      64615dcc