library/L3_Templates: add templates for RR Physical Information

Change-Id: Icc0f9d0987e77a714e9eaffaedd851a982063582
Related: SYS#5838
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
+			}
+		}
+	}
+}
+
 
 
 }