1. 08 Nov, 2018 14 commits
  2. 07 Nov, 2018 1 commit
  3. 05 Nov, 2018 3 commits
  4. 02 Nov, 2018 9 commits
  5. 31 Oct, 2018 1 commit
  6. 30 Oct, 2018 1 commit
  7. 25 Oct, 2018 1 commit
    • Bi-Ruei, Chiu's avatar
      Update asn1c to commit 0a7524184f16e7093990a31d8d4db487a16e5782 · 342972c2
      Bi-Ruei, Chiu authored
      Fix the problem that duplicate type names exist in OPEN TYPE.
      
      The following excerpt of ASN.1 of X2AP is one example.
      
        HandoverRequestAcknowledge-IEs X2AP-PROTOCOL-IES ::= {
          { ID id-Old-eNB-UE-X2AP-ID  CRITICALITY ignore  TYPE UE-X2AP-ID  PRESENCE mandatory}|
          { ID id-New-eNB-UE-X2AP-ID  CRITICALITY ignore  TYPE UE-X2AP-ID  PRESENCE mandatory}|
          ...
        }
      342972c2
  8. 23 Oct, 2018 6 commits
  9. 22 Oct, 2018 1 commit
    • Cedric Roux's avatar
      T: macpdu2wireshark: add MIB logging · 7b264ac9
      Cedric Roux authored
      The tracer macpdu2wireshark can send MIBs to wireshark.
      This can be disabled by passing the new -no-mib option.
      
      openair1/SCHED/phy_procedures_lte_eNb.c has been modified
      to have a new T trace with the MIB.
      7b264ac9
  10. 19 Oct, 2018 1 commit
  11. 18 Oct, 2018 2 commits
    • Raphael Defosseux's avatar
      Astyle options agreed during TC meeting 2018/10/18. · 72167b50
      Raphael Defosseux authored
       -- Note that max line length is 200 (maximum allowed by tool)
       -- Pre-commit hook tested and uses the same option file as CI
      Signed-off-by: default avatarRaphael Defosseux <raphael.defosseux@eurecom.fr>
      72167b50
    • Cedric Roux's avatar
      hotfix: fix a problem with multiple UEs · 075a713d
      Cedric Roux authored
      The symptom: when two UEs do uplink traffic at the same time, the
      eNB fails to decode data sometimes. This has been seen with FDD
      and 50 RBs. This generates a cascade of other problems leading to
      disconnection/reconnection events seen in the log.
      
      The problem: there are probably many, but one obvious bug was found
      while analyzing some logs. Scheduling in the same TTI one UE's uplink
      traffic and random access (msg3) was done in the same RB.
      
      This commit fixes this simple case. It is probably not the end of
      the story.
      
      This is a hotfix, that does not change the code much.
      
      We need to use vrb_map_UL properly all over the places. Today is
      not used, but this is the way to go (most probably).
      075a713d