fixeria has submitted this change. ( https://gerrit.osmocom.org/c/osmo-ttcn3-hacks/+/27498 )
Change subject: library/L3_Templates: add templates for RR Physical Information ......................................................................
library/L3_Templates: add templates for RR Physical Information
Change-Id: Icc0f9d0987e77a714e9eaffaedd851a982063582 Related: SYS#5838 --- M library/L3_Templates.ttcn 1 file changed, 31 insertions(+), 0 deletions(-)
Approvals: laforge: Looks good to me, approved Jenkins Builder: Verified
diff --git a/library/L3_Templates.ttcn b/library/L3_Templates.ttcn index e6efb68..7a051e0 100644 --- a/library/L3_Templates.ttcn +++ b/library/L3_Templates.ttcn @@ -3466,6 +3466,37 @@ } }
+template (value) PDU_ML3_NW_MS +ts_RRM_PhysicalInfo(template (value) OCT1 ta := '00'O) := { + discriminator := '0000'B, /* overwritten */ + tiOrSkip := { + skipIndicator := '0000'B + }, + msgs := { + rrm := { + physicalInformation := { + messageType := '00101101'B, + timingAdvance := ta + } + } + } +} +template PDU_ML3_NW_MS +tr_RRM_PhysicalInfo(template (present) OCT1 ta := ?) := { + discriminator := '0110'B, /* RRM */ + tiOrSkip := { + skipIndicator := '0000'B + }, + msgs := { + rrm := { + physicalInformation := { + messageType := '00101101'B, + timingAdvance := ta + } + } + } +} +
}