add missing bit definition for NG-RAN in xAcT

when encoding the AcT value bit 11 is correctly set
when NG-RAN is present in the string representation,
however the decoding of bit 11 was missing.
Adds tests for the decoder as well.

Change-Id: I910df28c4c59ec94cce9603377786325f6d8c1a3
This commit is contained in:
Bjoern Riemer
2022-01-20 22:05:22 +01:00
committed by laforge
parent da57ef1529
commit ffee89a031
6 changed files with 14 additions and 10 deletions

View File

@@ -464,6 +464,7 @@ def dec_act(twohexbytes:Hexstr) -> List[str]:
act_list = [
{'bit': 15, 'name': "UTRAN"},
{'bit': 14, 'name': "E-UTRAN"},
{'bit': 11, 'name': "NG-RAN"},
{'bit': 7, 'name': "GSM"},
{'bit': 6, 'name': "GSM COMPACT"},
{'bit': 5, 'name': "cdma2000 HRPD"},