Skip to content
Snippets Groups Projects
  1. May 14, 2018
  2. May 02, 2018
    • Cedric Roux's avatar
      basic simulator: initial release · 6cb04bb4
      Cedric Roux authored
      This commit introduces a 'basic simulator'.
      
      This basic simulator is made of:
      - the standard eNB code using a special driver that mimics the USRP driver
      - the standard UE code using a special driver that mimics the USRP driver
      - no channel simulation
      - some special code to deal with faster-than-realtime behaviour of this
        basic simulator
      
      It connects one UE to one eNB. It requires an EPC, populated with the
      correct configuration for the UE.
      
      This is the initial release and may contain bugs (most probably race
      conditions due to the faster-than-realtime behaviour).
      
      To use it, see the documentation at:
          targets/ARCH/tcp_bridge/README.tcp_bridge_oai.
      
      It has been tested with 25, 50 and 100 RBs, FDD mode.
      (No check at all has been done to know if it could work in TDD mode.)
      6cb04bb4
  3. Apr 11, 2018
    • Cedric Roux's avatar
      integration fix: various fixes · e29d500d
      Cedric Roux authored
      - fix compilation of dlsim/ulsim/oaisim by defining some needed
        global variables
      - fix compilation of oaisim: compile coding and params_libconfig
      - fix running of if4p5 with low CPU count (oaisim was not working
        on the machine 'haswell' because of this)
      e29d500d
  4. Apr 06, 2018
  5. Mar 23, 2018
    • Cedric Roux's avatar
      fix PHY simulators compilation · ff3c929e
      Cedric Roux authored
      Only ulsim and dlsim compile. The others (dlsim_tm4 pucchsim prachsim
      pdcchsim pbchsim mbmssim) have been disabled.
      
      Command line to compile: ./build_oai --phy_simulators
      ff3c929e
  6. Mar 08, 2018
  7. Feb 12, 2018
  8. Jan 16, 2018
  9. Jan 15, 2018
    • Cedric Roux's avatar
      import NFAPI work from David Price from Cisco (non-working commit, do not use it) · 7757b9e7
      Cedric Roux authored
      It has been chosen to not include the full history of commits
      from David. He included a binary version of wireshark, probably
      a modified one that understands NFAPI. Wireshark is released under
      the GPL license, we cannot include it in the repository. We could
      have done a next commit to remove this binary. But then it would
      still be present in the history of commits, which may not be allowed.
      And it would take space on disk. We could edit the history to remove
      wireshark entirely. But this operation is too complicated.
      
      There was also a pcap capture file, which has nothing to do in
      the history of commits and would take space on disk. There again,
      it's too difficult to edit the history to remove it.
      
      There was a file .gitignore that was also removed.
      
      The original history can be found on David's repository:
      https://gitlab.eurecom.fr/daveprice/openairinterface5g/
      The branch is: nfapi-ru-rau-split.
      
      A copy of that branch has been included in the internal OAI
      repository, for those who have access to it.
      The branch is the same. The last commit ID is
      9106438239e0bc626ff1fa1d97d911caadd0fbb9.
      
      You can compare the current commit with the commit 9106...
      to see what differs.
      
      The current commit has to be considered non-working.
      The commit following the current commit will fix problems with
      the work in the current commit.
      
      If you use git bisect, don't spend time analyzing the current
      commit.
      7757b9e7
  10. Nov 14, 2017
  11. Oct 23, 2017
  12. Oct 18, 2017
  13. Sep 29, 2017
  14. Sep 03, 2017
  15. Aug 08, 2017
    • Cedric Roux's avatar
      hotfix: protobuf-c compilation failure · 17b9a9e9
      Cedric Roux authored
      protobuf-c does not compile anymore.
      
      Let's handle this a bit better.
      
      We now install protobuf and protobuf-c only for the
      flexran agent. That is, if you want to use the flexran
      agent, you need to install protobuf/protobuf-c and
      you do it this way:
      
        ./build_oai -I -a
      
      (you add -a)
      
      Other targets don't need protobuf nor protobuf-c, so
      it's not installed by the -I command of build_oai,
      unless you pass -a with -I.
      
      Also, we now use protobuf 3.3.0, not 2.6.1. The code
      has been adapted, a quick test seems to indicate that
      the system works, but it has not been intensively tested.
      17b9a9e9
  16. Jun 21, 2017
  17. Jun 02, 2017
    • Frank A. Zdarsky's avatar
    • Cedric Roux's avatar
      integration fixes · 60c4b5ec
      Cedric Roux authored
      - rename UE_NO_LOG to DISABLE_LOG_X
        because the name is misleading. The full software
        is impacted, not only the UE part
      - same for compilation option ---ue-no-log
        that becomes --disable-log
      - keep LOG_X for the standard case, that is the
        case without DISABLE_LOG_X where printf has been
        put. Two reasons:
        * printf is not realtime friendly
        * keep behavior similar for other users who may
          be troubled by different logs that don't add
          any benefit to previous logs
      60c4b5ec
  18. May 31, 2017
  19. May 19, 2017
    • gabrielC's avatar
      UE logging change : · fe350d5b
      gabrielC authored
      --ue-trace : Enabling UE trace for debug
      --ue-timing : Enabling UE timing trace
      --ue-no-log : Disabling all LOG_X traces
      fe350d5b
  20. May 17, 2017
  21. Mar 28, 2017
  22. Mar 27, 2017
  23. Mar 23, 2017
    • Cedric Roux's avatar
      RRC Rel14 · 4fcb6272
      Cedric Roux authored
      - import RRC ASN.1 defintions from the specifications
        (file openair2/RRC/LITE/MESSAGES/asn1c/ASN1_files/RRC-e10.asn)
        contrary to rel8/10, all modules have been imported, maybe it's too much
        to refine in case of problems
      - deal with rel14 in fix_asn1
      - all code that was for Rel10 is now for Rel10/Rel14
      - some incompatible changes (mostly in naming) were resolved in favor
        of rel14, see in openair2/RRC/LITE/defs.h
      - unsure about the rlc layer, some arrays have changed (values appended),
        I only changed the definition and in tests in the code, I changed
        the index limit, maybe it's not enough
      
      Rel14 is the default compilation mode.
      4fcb6272
  24. Feb 17, 2017
  25. Feb 14, 2017
    • Cedric Roux's avatar
      fix build_oai · 09139ab0
      Cedric Roux authored
      - the option --UE was abused! Let's introduce --UE-conf-nvram and
        --UE-gen-nvram
      - the option name --UE-OUTPUT was not clear and is now replaced by
        --UE-gen-nvram
      - the new options are described when running ./build_oai -h
      - print_help has been modified (' replaced by ") to print
        $conf_nvram_path and $gen_nvram_path
      09139ab0
  26. Feb 03, 2017
  27. Feb 02, 2017
  28. Jan 31, 2017
  29. Jan 25, 2017
    • Frédéric Leroy's avatar
      feat(conf2uedata): uses nvram and usim binary · 3fdcf5b6
      Frédéric Leroy authored
      This commit reverts behaviour of data generation as before
      commit 7207c65b05fd812a18371827f2bfb1431fc58696:
      
          fix .ue* filenames in scripts and documentation
      
          TODO add option to conf2uedata and adapt script
      3fdcf5b6
    • Imad ALAWE's avatar
      feat: add conf2uedata tool for generating .*.nvram · 17d15532
      Imad ALAWE authored
      This patch adds the conf2uedata tool for generating .ue.nvram* .ue.emm.nvram*
      and .usim.nvram* files from a textual configuration file.
      
      The configuration file define most usefull values like plmns, mnc, mcc, msin, K,
      OPc for several users.
      The files generated will always ends with a number corresponding to the user
      entry in the configuration file.
      
      This breaks oai5g because other script have not be updated for using
      conf2uedata.
      This breaks also the at_nas_ue command.
      
      Examples of configuration files are in openair3/NAS/TOOLS/
      17d15532
  30. Jan 23, 2017
    • Cedric Roux's avatar
      remove compilation of oai_nw_drv · 7aa57b4d
      Cedric Roux authored
      The compilation of this module does not seem to be necessary,
      as far as I have checked. Plus it fails when you run
      "build_oai --oaisim --noS1", so let's not compile it.
      7aa57b4d
  31. Nov 18, 2016
    • ROBERT Benoit's avatar
      Add following functionnalities to OAI UE autotest framework · 0b1050c1
      ROBERT Benoit authored
      - add progess bar report
      - reduce ssh max_tries to 10
      - cleanOldPrograms -> change kill cmd line to be able to run autotest on same machine than lte-softmodem (thanks Rohit & Gabriel)
      - Cleanning output prints
      - add --skip-machine-preparation on cmd line
      - add --skip-sanity-check on cmd line
      - add HTML REPORT (no-S1 only)
      - add XML detailled report (no-S1 only)
      0b1050c1
  32. Nov 09, 2016
Loading