An error occurred fetching the project authors.
  1. 27 Oct, 2017 1 commit
  2. 25 Oct, 2017 1 commit
  3. 23 Oct, 2017 1 commit
  4. 16 Oct, 2017 1 commit
  5. 15 Oct, 2017 1 commit
  6. 10 Oct, 2017 2 commits
  7. 08 Oct, 2017 2 commits
  8. 06 Oct, 2017 1 commit
  9. 05 Oct, 2017 1 commit
  10. 03 Oct, 2017 1 commit
  11. 01 Oct, 2017 1 commit
  12. 29 Sep, 2017 1 commit
  13. 28 Sep, 2017 1 commit
  14. 25 Sep, 2017 1 commit
  15. 22 Sep, 2017 1 commit
  16. 21 Sep, 2017 1 commit
  17. 19 Sep, 2017 1 commit
  18. 15 Sep, 2017 1 commit
  19. 14 Sep, 2017 1 commit
  20. 17 Aug, 2017 2 commits
  21. 15 Aug, 2017 1 commit
  22. 13 Aug, 2017 1 commit
  23. 10 Aug, 2017 3 commits
  24. 08 Aug, 2017 1 commit
  25. 19 Jul, 2017 1 commit
  26. 06 Jul, 2017 1 commit
  27. 25 Apr, 2017 1 commit
  28. 17 Apr, 2017 1 commit
  29. 20 Jan, 2017 5 commits
    • Cedric Roux's avatar
      add some printf for debug purpose (to be remove at some point) · a0f19a72
      Cedric Roux authored
      this commit is here to help debug the previous ones.
      
      It has to be reverted at some point.
      a0f19a72
    • Cedric Roux's avatar
      add a LOG in RA · 0d3fa211
      Cedric Roux authored
      0d3fa211
    • Cedric Roux's avatar
      fix: better creation of RNTI · 428c2212
      Cedric Roux authored
      The previous version was calling taus(), which
      may return any value in [0..65535].
      
      The new version restricts it to [1024..59999]
      (arbitrary values, big enough, and in the valid range).
      
      It also checks that the new RNTI is not already present
      in the MAC.
      
      I think we should also check that it's not used by a RA
      process.
      
      The "loop" thing may not be the best solution either.
      
      To be refined.
      428c2212
    • Cedric Roux's avatar
      RA: fix allocation of RA process · c1fee624
      Cedric Roux authored
      A RA process is not available if
      and RA_template[i].wait_ack_Msg4 != 0
      
      We can have RA_active==FALSE and wait_ack_Msg4==1,
      in which case the RA process is in use and cannot
      be reassigned.
      c1fee624
    • Cedric Roux's avatar
      "fix" handling of UE_id in RA. · a5d5a21d
      Cedric Roux authored
      What if it's -1? Is it possible?
      We catch the case and abort.
      
      We may do a proper fix if the case happen.
      I don't think it will, but who knows...
      a5d5a21d
  30. 22 Nov, 2016 1 commit
    • Cedric Roux's avatar
      hotfix: correct Msg3 ressource blocks reservation · 6bb69e19
      Cedric Roux authored
      The Msg3 ressource blocks used by random access procedure
      were not correctly handled. The MAC scheduler could wrongly
      allocate a ressource block for both random access Msg3 and
      a regular UE.
      
      This hotfix hopefully fixes the problem.
      
      A new function "set_msg3_subframe" has been added in the
      interface between PHY and MAC.
      6bb69e19
  31. 11 Oct, 2016 1 commit
    • Cedric Roux's avatar
      hotfix: reserve RBs in Random Access Response case · ef67b3a0
      Cedric Roux authored
      The RBs were not marked as used. A later UE downlink scheduling
      could use those RBs, messing up everything.
      
      Not sure this is the right place to mark them used. Maybe better
      to do it in the "if (!CCE_allocation_infeasible" test.
      ef67b3a0