1. 28 Mar, 2019 2 commits
  2. 27 Mar, 2019 1 commit
  3. 26 Mar, 2019 6 commits
  4. 23 Mar, 2019 5 commits
  5. 21 Mar, 2019 1 commit
  6. 19 Mar, 2019 7 commits
    • Robert Schmidt's avatar
    • Robert Schmidt's avatar
      1f590efe
    • 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
    • Cedric Roux's avatar
      PHY: bugfix: compute start/end of burst correctly for TDD · a05753df
      Cedric Roux authored
      Start of burst is to start TDD DL transmission in the driver
      (tested with USRP for the moment).
      
      End of burst is to stop DL transmission.
      
      Start of burst can only happen for a DL subframe when the
      previous subframe was an UL subframe.
      
      End of burst can only happen for an S subframe.
      
      It's impossible for a subframe to be both the start of a burst
      and the end of a burst.
      
      This can be checked with eg. http://niviuk.free.fr/lte_resource_grid.html
      (or reading the specs).
      a05753df
    • Cedric Roux's avatar
    • Cedric Roux's avatar
      PHY: make sf_extension a parameter · ee5b7390
      Cedric Roux authored
      This parameter is meaningful in TDD, to decide
      when to start DL at eNB side. Since there is a
      need for the PA to be operational, we need to
      transmit a bit before the DL subframe coming
      after an UL subframe. (We transmit zeros.)
      
      We used to use N_TA_offset which may be too much.
      Default value is now N_TA_offset/2 and can be
      changed in the configuration file, in the RUs
      section, like:
      
      RUs = (
          {
             local_rf       = "yes"
               nb_tx          = 1
               nb_rx          = 1
               att_tx         = 0
               att_rx         = 0;
               bands          = [7];
               max_pdschReferenceSignalPower = -27;
               max_rxgain                    = 105;
               eNB_instances  = [0];
               sf_extension = 312;
          }
      );
      
      N_TA_offset is 624 (for 30.72MHz). In the example
      above, we set sf_extension = 312, which is also
      the default.
      
      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.
      ee5b7390
    • Cedric Roux's avatar
      bugfix: fix compilation · 69ccf51f
      Cedric Roux authored
      T has to be generated before compiling targets SCHED_RU_LIB and SCHED_UE_LIB.
      69ccf51f
  7. 18 Mar, 2019 3 commits
  8. 17 Mar, 2019 4 commits
  9. 16 Mar, 2019 2 commits
  10. 15 Mar, 2019 3 commits
  11. 14 Mar, 2019 6 commits