library/L3_Templates: add templates for RR Physical Information

Change-Id: Icc0f9d0987e77a714e9eaffaedd851a982063582
Related: SYS#5838
This commit is contained in:
Vadim Yanitskiy 2022-03-12 13:27:29 +03:00 committed by fixeria
parent 16e2991bf1
commit a4254e7a79
1 changed files with 31 additions and 0 deletions

View File

@ -3466,6 +3466,37 @@ template (value) PDU_ML3_MS_NW ts_RRM_GprsSuspReq(template (value) OCT4 tlli,
}
}
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
}
}
}
}
}