1. 30 Jul, 2019 1 commit
  2. 26 Jul, 2019 1 commit
  3. 25 Jul, 2019 2 commits
  4. 24 Jul, 2019 1 commit
    • Raphael Defosseux's avatar
      Merge branch 'develop_integration_2019_w30' into 'develop' · f8288afe
      Raphael Defosseux authored
      See merge request oai/openairinterface5g!649
      
      Develop: Integration 2019 Week 30
      Master Branch Release v1.1 Candidate
      
      The following Merge Requests are included:
      
      * MR 630 : nfapi interface bug fixes
      * MR 638 : X2 HO (tdd, forwarding, end marker)
      * MR 646 : Loadtester bugfixes
      * MR 647 : fix power estimation
      * MR 648 : CI: X2 Handover Testing
      f8288afe
  5. 23 Jul, 2019 5 commits
  6. 22 Jul, 2019 1 commit
  7. 20 Jul, 2019 2 commits
  8. 19 Jul, 2019 1 commit
  9. 18 Jul, 2019 1 commit
  10. 17 Jul, 2019 3 commits
  11. 16 Jul, 2019 5 commits
  12. 15 Jul, 2019 2 commits
  13. 12 Jul, 2019 6 commits
  14. 11 Jul, 2019 4 commits
  15. 24 Jul, 2019 1 commit
  16. 11 Jul, 2019 4 commits
    • laurent's avatar
      fix as per branch name · 3dfce638
      laurent authored
      3dfce638
    • Cedric Roux's avatar
      cleanup: no variable definition in header file · 8a8fdd59
      Cedric Roux authored
      We declare variables in header files, we don't define them. So we need
      to use 'extern' in the header file and put the definition
      in some C file.
      8a8fdd59
    • Cedric Roux's avatar
      phy: do not put random bits in unused DCI · 5775d325
      Cedric Roux authored
      This used to be done to ease power estimation in the UE,
      but this is not correct. Let's put no energy in the REs
      with no DCI data, which is what needs to be done.
      
      Plus it consumes a lot of CPU because of calling taus()
      way too much.
      5775d325
    • Cedric Roux's avatar
      T: add -no-bind option to macpdu2wireshark · 443b5fd0
      Cedric Roux authored
      To be used when you send data to another host.
      
      On the other host, to avoid ICMP traffic about the port
      not being open, do:
      
      ./nc -l -u -p 9999 > /dev/null
      
      You need to restart this command each time you run macpdu2wireshark.
      You can use any other program that will accept UDP packets on the
      port 9999 (default port of macpdu2wireshark, change if you use another
      port of course).
      443b5fd0