An error occurred fetching the project authors.
  1. 23 Dec, 2020 1 commit
  2. 01 Dec, 2020 2 commits
  3. 26 Nov, 2020 1 commit
  4. 06 Nov, 2020 1 commit
  5. 12 Sep, 2020 1 commit
    • Cedric Roux's avatar
      NR: fix time keeping in RLC for gNB · 5b0efd5b
      Cedric Roux authored
      RLC has timers. We need to keep track of time. We chose to not use
      realtime but 'processing time'. That is we send a tick to RLC for every
      subframe when it is processed by the softmodem. Before this commit we
      used to increase time in the function mac_rlc_status_ind which is called
      for every subframe in the eNB, but not in the gNB (at least not in the
      current gNB). So we need another way to keep track of time.
      
      The function gNB_dlsch_ulsch_scheduler is called for every slot. It seems
      to be the perfect candidate to send a tick to RLC for every subframe. We
      take care of subcarrier spacing to send every subframe (one subframe is
      always 1ms), not every slot (slot duration depends on subcarrier spacing).
      
      It may not be the best solution. To be revised if needed.
      
      Note: the UE has not been fixed. Some modification is needed for the UE
      too, most probably.
      5b0efd5b
  6. 26 Aug, 2020 1 commit
  7. 06 Aug, 2020 2 commits
  8. 15 Jun, 2020 2 commits
  9. 12 Jun, 2020 1 commit
  10. 01 Jun, 2020 1 commit
  11. 25 May, 2020 1 commit
  12. 19 May, 2020 1 commit
  13. 12 May, 2020 1 commit
  14. 05 May, 2020 1 commit
  15. 04 May, 2020 1 commit
  16. 17 Apr, 2020 1 commit
  17. 15 Apr, 2020 1 commit
  18. 06 Apr, 2020 1 commit
    • Robert Schmidt's avatar
      RLC: _req() accepts max TB size, _ind() not · eeaa5a99
      Robert Schmidt authored
      Previously, the various rlc_*_ind() functions had a parameter to enable
      the MAC to specify the max TB size that a subsequent call to the
      corresponding rlc_*_req() (!) function would return. This patch removes
      this parameter from the rlc_*_ind() functions and makes the parameter
      working that is already in the rlc_*_req() functions.
      eeaa5a99
  19. 06 Feb, 2020 1 commit
  20. 04 Feb, 2020 1 commit
  21. 22 Jan, 2020 1 commit
  22. 20 Jan, 2020 1 commit
  23. 15 Jan, 2020 1 commit
  24. 10 Jan, 2020 1 commit
  25. 19 Dec, 2019 1 commit
  26. 16 Dec, 2019 3 commits
  27. 10 Dec, 2019 1 commit
    • Cedric Roux's avatar
      nr rlc: first commit · 1a46b66d
      Cedric Roux authored
      Initial implementation.
      
      nr_rlc/nr_rlc_oai_api.c will need some clean rewrite at some point.
      
      More testing is also needed.
      1a46b66d