SI10: add records

Related: OS#5783
Change-Id: Ia3e152425872d4452e267b013d9a391a091751b6
This commit is contained in:
Max 2023-01-30 16:40:26 +03:00
parent badaf42b2e
commit b649842768
2 changed files with 14 additions and 0 deletions

View File

@ -1143,6 +1143,13 @@ type record VbsVgcsOptionsOpt {
variant (options) "PRESENCE(presence = '1'B)"
};
/* 10.5.2.44 SI 10 Rest Octets */
type record SI10RestOctets {
/* TODO */
} with {
/* TODO */
};
/* 10.5.2.37b SI 13 Rest Octets (O & S) */
type record SI13RestOctets {
BIT1 presence, // L/H

View File

@ -196,6 +196,11 @@ module GSM_SystemInformation {
SI6RestOctets rest_octets
} with { variant "" };
/* 44.018 9.1.50 */
type record SystemInformationType10 {
SI10RestOctets rest_octets
} with { variant "" };
/* 44.018 9.1.43a */
type record SystemInformationType13 {
SI13RestOctets rest_octets
@ -213,6 +218,7 @@ module GSM_SystemInformation {
SystemInformationType5bis si5bis,
SystemInformationType5ter si5ter,
SystemInformationType6 si6,
SystemInformationType10 si10,
SystemInformationType13 si13,
octetstring other
} with { variant "" };
@ -231,6 +237,7 @@ module GSM_SystemInformation {
si5bis, header.message_type = SYSTEM_INFORMATION_TYPE_5bis;
si5ter, header.message_type = SYSTEM_INFORMATION_TYPE_5ter;
si6, header.message_type = SYSTEM_INFORMATION_TYPE_6;
si10, header.message_type = SYSTEM_INFORMATION_TYPE_10;
si13, header.message_type = SYSTEM_INFORMATION_TYPE_13;
other, OTHERWISE;
)" };