BSSMAP_Templates: Add templates for UPLINK REQUEST

Change-Id: I0b02be6a87899d5c9a2ef92011e09a8897328a05
diff --git a/library/BSSMAP_Templates.ttcn b/library/BSSMAP_Templates.ttcn
index 0810bd3..89efeb8 100644
--- a/library/BSSMAP_Templates.ttcn
+++ b/library/BSSMAP_Templates.ttcn
@@ -2468,6 +2468,34 @@
 }
 
 /* Section 3.2.1.57 */
+template (value) PDU_BSSAP ts_BSSMAP_UplinkReq
+modifies ts_BSSAP_BSSMAP := {
+	pdu := {
+		bssmap := {
+			uplinkRequest := {
+				messageType := '1F'O,
+				talkerPriority := omit,
+				cellIdentifier := omit,
+				layer3Information := omit,
+				mobileIdentity := omit
+			}
+		}
+	}
+}
+template (present) PDU_BSSAP tr_BSSMAP_UplinkReq
+modifies tr_BSSAP_BSSMAP := {
+	pdu := {
+		bssmap := {
+			uplinkRequest := {
+				messageType := '1F'O,
+				talkerPriority := *,
+				cellIdentifier := *,
+				layer3Information := *,
+				mobileIdentity := *
+			}
+		}
+	}
+}
 template (value) PDU_BSSAP
 ts_BSSMAP_UplinkReq_L3(template (value) BIT2 priority,
 		       template (omit) BSSMAP_IE_CellIdentifier cell_id,