An error occurred fetching the project authors.
  1. 27 Oct, 2020 2 commits
  2. 13 May, 2020 1 commit
  3. 13 Jan, 2020 1 commit
  4. 10 Jan, 2020 1 commit
  5. 04 Dec, 2019 1 commit
  6. 26 Nov, 2019 1 commit
  7. 08 Oct, 2019 1 commit
  8. 23 Sep, 2019 1 commit
  9. 14 Sep, 2019 1 commit
  10. 21 May, 2019 1 commit
  11. 20 May, 2019 1 commit
  12. 11 Apr, 2019 1 commit
  13. 26 Mar, 2019 2 commits
  14. 22 Mar, 2019 1 commit
  15. 01 Mar, 2019 1 commit
  16. 21 Feb, 2019 1 commit
  17. 22 Jan, 2019 1 commit
  18. 16 Jan, 2019 1 commit
  19. 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
  20. 12 Nov, 2018 1 commit
  21. 28 Oct, 2018 1 commit
  22. 25 Oct, 2018 1 commit
    • Raymond Knopp's avatar
      Changes: · 8d78c0c9
      Raymond Knopp authored
      0. unwiring of 40 MHz channel hard-coding and general SSB location
      1. PSS dynamic range improvement and DC carrier fix
      2. SSS channel estimation and detection corrected
      3. PBCH channel estimation fixed
      4. PBCH channel extraction/compensation reworked for the general case
      5. fixed-point low-complexity polar decoder integrated to PBCH decoding chain
      
      works by default (nr_pbchsim) at 100 MHz / 30 kHz SCS and SSB wherever (but known to UE)
      8d78c0c9
  23. 18 Oct, 2018 1 commit
  24. 17 Oct, 2018 1 commit
  25. 06 Sep, 2018 1 commit
  26. 16 Aug, 2018 1 commit
  27. 09 Aug, 2018 1 commit
  28. 07 Aug, 2018 1 commit
  29. 10 Jul, 2018 1 commit
  30. 22 Jun, 2018 2 commits
  31. 05 Jun, 2018 1 commit
  32. 16 May, 2018 1 commit
  33. 09 Apr, 2018 1 commit
  34. 22 Feb, 2018 1 commit
    • Cedric Roux's avatar
      integration: cleanup · 8ca5fb4e
      Cedric Roux authored
      - remove spaces at the end of lines
      - remove useless dead code
        use: git show -p <this commit> -w
        to see it clearly
      8ca5fb4e
  35. 18 Feb, 2018 1 commit
  36. 13 Feb, 2018 1 commit
  37. 31 Jan, 2018 1 commit
    • Robert Schmidt's avatar
      free memory when stopping/restarting lte-softmodem · d0922311
      Robert Schmidt authored
      - add function free_td() -> complements init_td() [seems to not be used, added
        for completeness]
      - add function free_td8() -> undoes init_td8() [free memory of 8-bit LLR Turbo
        decoder]
      - add function free_td16() -> undoes init_td16() [free memory of 16-bit LLR
        Turbo decoder]
      - change function free_tdavx216() -> undoes init_tdavx216() [free memory of
        16-bit LLR Turbo decoder, AVX2 version]
      - add free_lte_top() -> frees memory allocated by init_lte_top()
      - change free_ul_ref_sigs() to set freed pointers to NULL
      - add method free_transport() -> frees memory of ULSCH/DLSCH transport channels
      - use the above functions when stopping/restarting the lte-softmodem
      d0922311