1. 19 Aug, 2018 1 commit
  2. 18 Aug, 2018 2 commits
  3. 17 Aug, 2018 2 commits
  4. 15 Aug, 2018 3 commits
  5. 13 Aug, 2018 6 commits
    • Raphael Defosseux's avatar
      CI: · bd5b3b1e
      Raphael Defosseux authored
       - fix when FDD slave job fails, it still retrieves the HTML report
       - improvement in HTML report, stats per UE for attach, ping, iperf
      Signed-off-by: default avatarRaphael Defosseux <raphael.defosseux@eurecom.fr>
      bd5b3b1e
    • Cedric Roux's avatar
      compilation warning "jobserver unavailable" removal · 21481fef
      Cedric Roux authored
      This commit emoves the warning:
      make[4]: warning: jobserver unavailable: using -j1.  Add '+' to parent make rule.
      
      Basically, inside a Makefile we should use $(MAKE) instead of make.
      21481fef
    • Cedric Roux's avatar
      minor: remove TABs · fd8eb46c
      Cedric Roux authored
      fd8eb46c
    • Cedric Roux's avatar
      T: check consistency of T_messages.txt with VCD functions and variables traces · d5da350b
      Cedric Roux authored
      Since VCD has now to go through the T tracer, we enforce the consistency
      of data found in common/utils/LOG/vcd_signal_dumper.[ch] with data
      found in common/utils/T/T_messages.txt.
      
      We might get completely rid of common/utils/LOG/vcd_signal_dumper.[ch] at some
      point. For the moment, let's keep it.
      
      This commit adds the program common/utils/T/check_vcd.c and necessary
      modifications to enforce its use at compilation time.
      
      If you modify common/utils/LOG/vcd_signal_dumper.[ch] but do not update
      cmake_targets/CMakeLists.txt an error will pop up when you compile the
      software. You have to keep both modules synchronized.
      d5da350b
    • Cedric Roux's avatar
      T: improve error reporting · 072bb904
      Cedric Roux authored
      Use "error:" as prefix to error messages in genids.c
      to help looking for errors in case of failure of
      the build.
      072bb904
    • Cedric Roux's avatar
      T: simplify · f18a438c
      Cedric Roux authored
      Don't use shm anymore. Use mmap directly.
      f18a438c
  6. 10 Aug, 2018 2 commits
  7. 09 Aug, 2018 20 commits
  8. 08 Aug, 2018 4 commits
    • Raymond Knopp's avatar
    • Raymond Knopp's avatar
      Merge remote-tracking branch 'origin/develop' into develop-FeMBMS · 1248ef61
      Raymond Knopp authored
      Conflicts:
      	openair1/PHY/LTE_ESTIMATION/lte_sync_timefreq.c
      	openair1/PHY/LTE_REFSIG/lte_dl_mbsfn.c
      	openair1/PHY/LTE_TRANSPORT/pbch.c
      	openair1/PHY/LTE_TRANSPORT/pmch.c
      	openair1/PHY/LTE_TRANSPORT/prach.c
      	openair1/PHY/LTE_TRANSPORT/sss.c
      	openair1/PHY/LTE_UE_TRANSPORT/initial_sync.c
      	openair1/PHY/TOOLS/lte_dfts.c
      	openair1/PHY/defs_eNB.h
      	openair1/PHY/impl_defs_lte.h
      	openair2/RRC/LTE/rrc_defs.h
      	targets/RT/USER/lte-ue.c
      	targets/RT/USER/lte-uesoftmodem.c
      1248ef61
    • Cedric Roux's avatar
      T: improve to_vcd tracer · 5b17b036
      Cedric Roux authored
      Make it compatible with 'template' gtwave files as found in openair's
      repository.
      
      The type VCD_NAME was added to the VCD IDs in T_messages.txt.
      The database processing code was adapted to use it.
      The tracer to_vcd was adapted to use it and render the produced vcd
      output compatible with the 'template' gtkwave files.
      
      When running to_vcd, do not forget to pass -vcd to use this feature.
      5b17b036
    • Cedric Roux's avatar
      T: add a 'multi' tracer · fdd4366d
      Cedric Roux authored
      This tracer allows the connection of several tracers to one tracee.
      
      To use the multi tracer:
      - run the tracee as usual, eg. ./lte-softmodem -O xxxx.conf --T_stdout 0
      - run the multi tracer: ./multi -d ../T_messages.txt
      - connect other tracers to the multi tracer:
         - ./enb -d ../T_messages.txt -p 2022
         - ./textlog -d ../T_messages.txt -p 2022
         - etc.
      
      By default the multi tracer connects to the tracee to the port 2021,
      as for any other tracer.
      
      Then it accepts connections from other tracers on the port 2022.
      
      This can be changed with parameters on the command line.
      
      The tracee and the other tracers can be stopped/started at any time.
      fdd4366d