diff options
Diffstat (limited to 'library')
-rw-r--r-- | library/GSM_SystemInformation.ttcn | 18 |
1 files changed, 12 insertions, 6 deletions
diff --git a/library/GSM_SystemInformation.ttcn b/library/GSM_SystemInformation.ttcn index a4688cd..4cabd77 100644 --- a/library/GSM_SystemInformation.ttcn +++ b/library/GSM_SystemInformation.ttcn @@ -135,14 +135,18 @@ module GSM_SystemInformation { type record SystemInformationType2bis { NeighbourCellDescription extd_bcch_freq_list, RachControlParameters rach_control, - OCT1 rest_octets - } with { variant "" }; + RestOctets rest_octets + } with { + variant (rest_octets) "FIELDLENGTH(1)" + }; /* 44.018 9.1.34 */ type record SystemInformationType2ter { NeighbourCellDescription2 extd_bcch_freq_list, - OCT4 rest_octets - } with { variant "" }; + RestOctets rest_octets + } with { + variant (rest_octets) "FIELDLENGTH(4)" + }; /* 44.018 9.1.35 */ type record SystemInformationType3 { @@ -199,8 +203,10 @@ module GSM_SystemInformation { LocationAreaIdentification lai, CellOptionsSacch cell_options, BIT8 ncc_permitted, - OCT7 rest_octets - } with { variant "" }; + RestOctets rest_octets + } with { + variant (rest_octets) "FIELDLENGTH(7)" + }; type union SystemInformationUnion { SystemInformationType1 si1, |