Skip to content
Snippets Groups Projects
  1. Jun 16, 2017
  2. May 19, 2017
  3. May 15, 2017
  4. Mar 23, 2017
    • Cédric Roux's avatar
      fix issue 227 - UE IP settings disrupts realtime · cff91499
      Cédric Roux authored
      see oai/openairinterface5g#227
      
      When the UE connects to the eNodeB and receives its IP address from the
      network, it calls system() to set it in the linux kernel world. This call
      is not done in a realtime thread, but in the NAS, which uses its own thread,
      independent of the realtime processing.
      
      In some situations this totally disrupts realtime processing.
      
      It is difficult to know precisely why that happens, but it seems that calling
      fork(), as system() does, in a multi-threaded program is not a good idea. (So
      say several people on the internet.) It is not clear why the softmodem is
      impacted, but it seems that fork() is really what triggers the disruption.
      Several tests lead to that conclusion.
      
      To fix the problem, we create a child background process very early in main()
      (before anything else basically). Then instead of calling system(), the main
      process sends the string to the background process. The background process
      gets the string, passes it to system() and reports the success/failure back
      to the main process.
      
      This solution involves a lot of system calls, but calling system() in the
      first place is not cheap either. As long as no realtime thread uses this
      mechanism, things should be fine. Time will tell.
      cff91499
  5. Feb 20, 2017
  6. Feb 17, 2017
    • Cédric Roux's avatar
      T: let it compile with C++ · f9b5dafe
      Cédric Roux authored
      We now have 4 versions of T_HEADER:
       - bad quality C++ version with time
       - good quality C version with time
       - bad quality C++ version without time
       - good quality C version without time
      f9b5dafe
  7. Feb 09, 2017
  8. Feb 02, 2017
  9. Jan 30, 2017
  10. Jan 25, 2017
  11. Jan 11, 2017
  12. Jan 09, 2017
  13. Jan 03, 2017
  14. Dec 26, 2016
  15. Dec 22, 2016
  16. Dec 21, 2016
  17. Dec 19, 2016
  18. Dec 12, 2016
  19. Dec 05, 2016
    • Cédric Roux's avatar
      T: add 'throughputlog' logger · 9a0f32aa
      Cédric Roux authored
      Normally it is used to display throughput.
      
      The computation it does is to sum up the wanted value for the last
      second (1000 TTIs) and send this value to the views associated to
      this logger, at each TTI.
      9a0f32aa
    • Cédric Roux's avatar
      T: new view 'scolltti' · 2270dae1
      Cédric Roux authored
      This view is used to display throughput (to come in next commits).
      2270dae1
    • Cédric Roux's avatar
      T: some work on XY plot · 5b6a83fc
      Cédric Roux authored
      - change paint function:
        when the XY plot is resized we scale. Previously
        the last range was put in the middle of the new range
        (say when we increase the size).
        We may get aspect ratio changes if the resize is not identical
        vertically and horizontally, but I think this behaviour is more
        'natural'.
      - fix a bug:
        the last horizontal tick label was printed to far on the right,
        out of the bouding box of the XY plot. This is not totally fixed
        in the case the label is larger than the XY plot. Now the part
        out of the bounding box will be printed on the left. No big deal,
        make the plot big enough. (Before, even if big enough you had a
        problem.)
      - add a new vertical tick display, to be used for throughput mostly.
        See in enb.c the difference between 'input signal' and throughput
        plots (those throughput plots will come in later commits).
      5b6a83fc
    • Cédric Roux's avatar
      T: add widget 'textarea' · bff8e40d
      Cédric Roux authored
      It's like a label but with fixed dimensions and maximum
      characters' capacity at creation time.
      bff8e40d
    • Cédric Roux's avatar
      T: new function 'bps' · 031a72de
      Cédric Roux authored
      This function is used to print rates (say '1kb/s' or '16Mb/s').
      031a72de
    • Cédric Roux's avatar
      T: add TBS to ENB_PHY_DLSCH_UE_DCI · d7831c1f
      Cédric Roux authored
      d7831c1f
  20. Dec 01, 2016
  21. 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
Loading