An error occurred fetching the project authors.
  1. 12 Oct, 2020 1 commit
  2. 20 May, 2020 1 commit
  3. 01 Apr, 2020 1 commit
  4. 23 Mar, 2020 1 commit
  5. 11 Mar, 2020 2 commits
  6. 03 Mar, 2020 3 commits
  7. 20 Jan, 2020 1 commit
  8. 13 Jan, 2020 1 commit
  9. 28 Nov, 2019 1 commit
  10. 21 Nov, 2019 1 commit
  11. 04 Nov, 2019 1 commit
  12. 08 Oct, 2019 3 commits
  13. 04 Oct, 2019 1 commit
  14. 23 Sep, 2019 1 commit
  15. 16 Sep, 2019 1 commit
  16. 14 Sep, 2019 2 commits
  17. 27 Aug, 2019 1 commit
  18. 09 Aug, 2019 1 commit
    • Cedric Roux's avatar
      lte-softmodem: fix if4p5 (maybe incorrect) · 7967701d
      Cedric Roux authored
      For whatever reason, ru->frame_parms was NULL and the RRU crashed.
      Let's allocated memory.
      
      Also, don't do fp = ru->frame_parms in ru_thread, it seems that it
      takes the value before allocation (so: NULL) and the code crashes
      later on.
      
      Maybe it's not the correct solution. To be refined at some point.
      7967701d
  19. 25 Jul, 2019 1 commit
  20. 16 Jul, 2019 1 commit
  21. 10 Jul, 2019 1 commit
  22. 24 Jun, 2019 1 commit
  23. 04 Jun, 2019 1 commit
  24. 02 Jun, 2019 1 commit
  25. 29 May, 2019 1 commit
  26. 28 May, 2019 1 commit
  27. 23 May, 2019 1 commit
  28. 19 May, 2019 1 commit
  29. 28 Apr, 2019 1 commit
  30. 24 Apr, 2019 1 commit
  31. 22 Apr, 2019 1 commit
  32. 19 Apr, 2019 1 commit
  33. 05 Apr, 2019 1 commit
  34. 19 Mar, 2019 1 commit
    • Cedric Roux's avatar
      PHY: add parameter end_of_burst_delay for TDD · 275e5b3a
      Cedric Roux authored
      end_of_burst_delay is used to stop TX only "after a while".
      If we stop right after effective signal, with USRP B210 and
      B200mini, we observe a high EVM on the S subframe (on the
      PSS).
      A value of 400 (for 30.72MHz) solves this issue. This is
      the default.
      
      This default value can be changed in the configuration file.
      For example:
      
      RUs = (
          {
             local_rf       = "yes"
               nb_tx          = 1
               nb_rx          = 1
               att_tx         = 20
               att_rx         = 0;
               bands          = [7];
               max_pdschReferenceSignalPower = -27;
               max_rxgain                    = 105;
               eNB_instances  = [0];
               sf_extension = 312;
               end_of_burst_delay = 200;
          }
      );
      
      Here we would set a value of 200.
      
      The value to put in the configuration file is for
      30.72MHz. The value is scaled accordingly at runtime
      (thus only one value to set for every RB configuration,
      25, 50 or 100, leading to less problems when adapting
      configuration files).
      
      This option is for experts and should not be changed
      randomly.
      275e5b3a