An error occurred fetching the project authors.
  1. 08 Dec, 2016 3 commits
  2. 05 Dec, 2016 1 commit
  3. 30 Nov, 2016 1 commit
    • Cedric Roux's avatar
      T: update traces · 7adc4703
      Cedric Roux authored
      - add mcs to ENB_PHY_DLSCH_UE_DCI
      - add mcs, round, first_rb, nb_rb, TBS to ENB_PHY_ULSCH_UE_DCI
      7adc4703
  4. 28 Nov, 2016 1 commit
  5. 25 Nov, 2016 1 commit
  6. 24 Nov, 2016 3 commits
  7. 22 Nov, 2016 6 commits
  8. 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
  9. 18 Nov, 2016 3 commits
    • Raymond Knopp's avatar
    • Cedric Roux's avatar
      T: add a trace for PHICH · c03f13c0
      Cedric Roux authored
      c03f13c0
    • 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
  10. 16 Nov, 2016 1 commit
    • Cedric Roux's avatar
      hotfix: turbo decoder should not fail if CRC is 0 · f116a10d
      Cedric Roux authored
      The case of a CRC == 0 is legal.
      
      After discussion with Raymond, it is also possible to have all
      bits at 0 (and so a CRC==0) if there is no transmission and thus
      not much energy.
      
      So this hotfix may introduce new problems (false decoding).
      
      A future work is to handle this case properly by not calling the
      turbo decoder if there is not enough energy received.
      
      The problem might manifest itself more in the UE part, especially
      when it tries to decode MIB and/or SIB (if I understood correctly).
      f116a10d
  11. 09 Nov, 2016 2 commits
  12. 07 Nov, 2016 2 commits
  13. 04 Nov, 2016 2 commits
  14. 25 Oct, 2016 1 commit
  15. 20 Oct, 2016 1 commit
  16. 18 Oct, 2016 1 commit
    • fnabet's avatar
      [OAI-UE] SRS feature · 9938bd5d
      fnabet authored
                         1- Implement SRS procedures
                         2- Implement SRS procedures part2
                         3- Implement SRS: SRS valid on CMW
      9938bd5d
  17. 12 Oct, 2016 2 commits
  18. 10 Oct, 2016 2 commits
    • Cedric Roux's avatar
      issue 137 - fix RI bits decoding · 190fc96a
      Cedric Roux authored
      RI bits are present only in some transmission modes.
      
      For aperiodic reporting (the mode we do as of today),
      36.213 7.2.1 (release 10) says:
      
          "RI is only reported for transmission modes 3 and 4,
          as well as transmission modes 8 and 9 with PMI/RI reporting"
      
      This commit activates decoding of RI bits only for transmission
      modes 3 and 4. 8 and 9 are not done today (as far as I know).
      190fc96a
    • Cedric Roux's avatar
      issue 137 - correct computation of G · b0887a1b
      Cedric Roux authored
      G was wrongly computed in some places, not taking into account
      CQI and RI bits. This commit saves the correct value computed
      in ulsch_decoding so we can reuse it in ulsch_decoding_data
      (and the like).
      
      Only the file openair1/PHY/LTE_TRANSPORT/ulsch_decoding.c has
      been checked. If the computation is done somewhere else the
      problem might still exist.
      b0887a1b
  19. 09 Oct, 2016 2 commits
  20. 08 Oct, 2016 1 commit
  21. 07 Oct, 2016 3 commits