An error occurred fetching the project authors.
  1. 08 Dec, 2020 1 commit
  2. 26 Nov, 2020 1 commit
  3. 19 Nov, 2020 2 commits
  4. 16 Nov, 2020 1 commit
  5. 14 Nov, 2020 1 commit
  6. 13 Nov, 2020 2 commits
  7. 12 Nov, 2020 1 commit
  8. 11 Nov, 2020 1 commit
  9. 09 Nov, 2020 1 commit
  10. 06 Nov, 2020 1 commit
  11. 05 Nov, 2020 2 commits
  12. 04 Nov, 2020 1 commit
    • Parminder Singh's avatar
      Review Comments are updated · 20978555
      Parminder Singh authored
      - updated return function value to -1
      - removed static variable for dmrs symbol selection for channel
      - Updated sin cos quadrant check conditions
      - removed casting from PTRS slope and related calculations
      20978555
  13. 03 Nov, 2020 1 commit
  14. 31 Oct, 2020 1 commit
    • Parminder Singh's avatar
      Fixed Channel compensation for dlsim for multiple DMRS · 65fb8a84
      Parminder Singh authored
      - fixed channel compensation by choosing most recent DMRS symbol ina
        slot
      - Removed code to find nearest DMRS symbol for channle compensation
      - Updated TBS calculation in DLSIM
      - Added debug prints in PTRS CPE estimation for DMRS symbol
      65fb8a84
  15. 28 Oct, 2020 1 commit
    • Parminder Singh's avatar
      PTRS DL extraction, estimation and compensation · 327ba9d3
      Parminder Singh authored
      - Added PTRS extraction and estimation for DL
      - Added processing for whole slot wrt PTRS estimates
      - DLSIM is updated to used -T flag to enable PTRS
      - DMRS compensated signal is further compensated with PTRS estimation
      327ba9d3
  16. 27 Oct, 2020 1 commit
  17. 26 Oct, 2020 1 commit
  18. 01 Jun, 2020 1 commit
  19. 29 May, 2020 1 commit
  20. 13 May, 2020 1 commit
  21. 13 Jan, 2020 1 commit
  22. 10 Jan, 2020 1 commit
  23. 01 Jan, 2020 1 commit
  24. 05 Dec, 2019 1 commit
  25. 02 Dec, 2019 1 commit
  26. 28 Nov, 2019 1 commit
  27. 19 Nov, 2019 1 commit
  28. 15 Nov, 2019 1 commit
  29. 14 Nov, 2019 1 commit
    • Thomas Schlichter's avatar
      Fix channel estimation for 3/4 sampling · ef3be740
      Thomas Schlichter authored
      In 3/4 sampling mode, the OFDM symbol size is _not_ a power of two (e.g. 1536 instead of 2048).
      In this case it is _not_ OK to calculate the modulus using a binary AND, it _must_ use either the actul modulus operator (%) using an integer division,
      or a _correct_ if statement or tertianary operator like this:
      
      re_offset = (re_offset + 4 >= ue->frame_parms.ofdm_symbol_size) ? (re_offset + 4 - ue->frame_parms.ofdm_symbol_size) : (re_offset + 4);
      
      But of course using the actual modulus operator is much more readable and surely not much slower:
      
      re_offset = (re_offset + 4) % ue->frame_parms.ofdm_symbol_size;
      ef3be740
  30. 13 Nov, 2019 1 commit
  31. 12 Nov, 2019 1 commit
  32. 07 Nov, 2019 4 commits
  33. 24 Oct, 2019 1 commit
  34. 18 Oct, 2019 1 commit