1. 21 Aug, 2019 3 commits
  2. 13 Aug, 2019 6 commits
  3. 12 Aug, 2019 1 commit
  4. 07 Aug, 2019 1 commit
  5. 06 Aug, 2019 1 commit
  6. 31 Jul, 2019 1 commit
  7. 29 Jul, 2019 2 commits
  8. 25 Jul, 2019 1 commit
  9. 24 Jul, 2019 1 commit
    • Raphael Defosseux's avatar
      Merge branch 'develop_integration_2019_w30' into 'develop' · 7b788430
      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
      7b788430
  10. 19 Jul, 2019 1 commit
  11. 18 Jul, 2019 1 commit
  12. 17 Jul, 2019 2 commits
  13. 16 Jul, 2019 2 commits
  14. 15 Jul, 2019 2 commits
  15. 12 Jul, 2019 6 commits
  16. 11 Jul, 2019 4 commits
  17. 24 Jul, 2019 1 commit
  18. 11 Jul, 2019 4 commits
    • laurent's avatar
      fix as per branch name · 6207e64e
      laurent authored
      6207e64e
    • Cedric Roux's avatar
      cleanup: no variable definition in header file · 2f5bf07b
      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.
      2f5bf07b
    • Cedric Roux's avatar
      phy: do not put random bits in unused DCI · 31bb8030
      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.
      31bb8030
    • Cedric Roux's avatar
      T: add -no-bind option to macpdu2wireshark · 2bfb50b5
      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).
      2bfb50b5