Skip to content
Snippets Groups Projects
  1. Dec 01, 2016
  2. Nov 30, 2016
    • Cédric Roux's avatar
      T: change range of DL/UL MCS plots · f89c70df
      Cédric Roux authored
      [-1 29] was not very pleasant for MCS 28 or no DCI (value is -1 in this case).
      [-2 30] looks better.
      f89c70df
    • Cédric Roux's avatar
      T: bugfix: vertical tick was off by 1 pixel · cbc2164e
      Cédric Roux authored
      The problem was visible when DL MCS was set to 20
      (do a ping -c 192.172.0.1 -i0.2 to get it). The dots
      were not plotted at the exact line of the tick mark.
      
      Not sure the fix is always correct.
      
      No big deal anyway.
      cbc2164e
    • Cédric Roux's avatar
      T: add DL and UL MCS plots in enb.c · 1e485b4b
      Cédric Roux authored
      Helps visualize MCS usage over time.
      1e485b4b
    • Cédric Roux's avatar
      T: new logger ticked_ttilog · a016cb75
      Cédric Roux authored
      A new logger is there: the "ticked TTI logger".
      Similar to TTI logger (used by the PUCCH1 energy plot)
      but takes another input, the "tick" (think subframe)
      and a default value for when no event is triggered between
      two ticks.
      
      This is used for the UL and DL MCS plots in enb.c (next commit).
      a016cb75
    • Cédric Roux's avatar
      T: update traces · 7adc4703
      Cédric Roux authored
      - add mcs to ENB_PHY_DLSCH_UE_DCI
      - add mcs, round, first_rb, nb_rb, TBS to ENB_PHY_ULSCH_UE_DCI
      7adc4703
  3. Nov 29, 2016
  4. Nov 28, 2016
    • Cédric Roux's avatar
      T: bugfix: lock required · 86039424
      Cédric Roux authored
      When the user clicks on "next UE" or "prev UE" we change the
      filters of loggers.
      
      At the same time, the main thread of enb.c processes events
      received from the soft-modem and uses the filters, some of them
      maybe in the process of being changed.
      
      Changing the filters is not atomic and has to be protected.
      86039424
  5. Nov 25, 2016
  6. Nov 24, 2016
  7. Nov 23, 2016
  8. Nov 22, 2016
  9. Nov 18, 2016
    • knopp's avatar
      85361335
    • Cédric Roux's avatar
      T: add a trace for PHICH · c03f13c0
      Cédric Roux authored
      c03f13c0
    • Cédric Roux's avatar
      hotfix: correct PHICH generation · 64615dcc
      Cédric Roux authored
      The PHICH generation is wrong.
      HARQ process X is uplink scheduled at TTI n.
      At TTI n+4 the eNB receives the data.
      At TTI n+8 the eNB sends ACK/NACK on the PHICH.
      
      The problem is that PHICH generation is done after scheduling.
      And PHICH generation uses "first_rb" and "n_DMRS" to compute
      "ngroup_PHICH" and "nseq_PHICH".
      
      So at TTI n+8 if the eNB has reused the HARQ process X for
      a new uplink scheduling the values "first_rb" and "n_DMRS"
      may have changed.
      
      We need to use the previous values.
      
      One solution would have been to do PHICH generation before
      scheduling. The problem is that "generate_phich_top" does more
      than PHICH generation. It has to setup parameters to sort of
      "emulate" a DCI0 in case of retransmission scheduled without
      DCI0. So part of it has to be done after scheduling. We would
      have to split the function.
      
      The simple adopted fix is to store old values of "first_rb"
      and "n_DMRS" and use those values in "generate_phich_top".
      
      This fix has only been tested with FDD. TDD may miserably fail.
      64615dcc
  10. Nov 16, 2016
    • Cédric Roux's avatar
      hotfix: turbo decoder should not fail if CRC is 0 · f116a10d
      Cédric Roux authored
      The case of a CRC == 0 is legal.
      
      After discussion with Raymond, it is also possible to have all
      bits at 0 (and so a CRC==0) if there is no transmission and thus
      not much energy.
      
      So this hotfix may introduce new problems (false decoding).
      
      A future work is to handle this case properly by not calling the
      turbo decoder if there is not enough energy received.
      
      The problem might manifest itself more in the UE part, especially
      when it tries to decode MIB and/or SIB (if I understood correctly).
      f116a10d
Loading