comparison cdg-hybrid/sap/mmss.pdf @ 212:e7a67accfad9

cdg-hybrid cdginc headers created
author Mychaela Falconia <falcon@freecalypso.org>
date Fri, 14 Oct 2016 21:52:58 +0000
parents
children
comparison
equal deleted inserted replaced
211:02269c474131 212:e7a67accfad9
1 ;********************************************************************************
2 ;*** File : mmss.pdf
3 ;*** Creation : Wed Mar 11 09:58:23 CST 2009
4 ;*** XSLT Processor : Apache Software Foundation / http://xml.apache.org/xalan-j / supports XSLT-Ver: 1
5 ;*** Copyright : (c) Texas Instruments AG, Berlin Germany 2002
6 ;********************************************************************************
7 ;*** Document Type : Service Access Point Specification
8 ;*** Document Name : mmss
9 ;*** Document No. : 6147.105.97.102
10 ;*** Document Date : 2002-07-19
11 ;*** Document Status: BEING_PROCESSED
12 ;*** Document Author: HM
13 ;********************************************************************************
14
15
16
17 PRAGMA SRC_FILE_TIME "Thu Nov 29 09:47:24 2007"
18 PRAGMA LAST_MODIFIED "2002-07-19"
19 PRAGMA ID_AND_VERSION "6147.105.97.102"
20
21
22
23 CONST MAX_SDU_LEN 1 ; maximum service data unit length
24
25
26
27 VALTAB VAL_ti
28 VAL 0 - 6 "ms originated transaction"
29 VAL 8 - 14 "ms originated transaction"
30 VAL 7 TI_RES_MO "reserved"
31 VAL 15 TI_RES_MT "reserved"
32
33
34
35
36 VAR cause "MM cause" S
37
38
39 VAR l_buf "length in bits" S
40
41
42 VAR o_buf "offset in bits" S
43
44
45 VAR buf "bit buffer" B
46
47
48 VAR ti "transaction identifier" B
49
50 VAL @p_mmss - VAL_ti@
51
52 VAR d1 "dummy, not used" B
53
54
55 VAR d2 "dummy, not used" B
56
57
58
59
60
61 COMP sdu "Service Data Unit"
62 {
63 l_buf ; length in bits
64 o_buf ; offset in bits
65 buf [MAX_SDU_LEN] ; bit buffer
66 }
67
68
69
70
71
72
73 ; MMSS_ESTABLISH_REQ 0x80000008
74 ; MMSS_RELEASE_REQ 0x80010008
75 ; MMSS_DATA_REQ 0x80020008
76 ; MMSS_DATA_IND 0x80004008
77 ; MMSS_ERROR_IND 0x80014008
78 ; MMSS_ESTABLISH_CNF 0x80024008
79 ; MMSS_ESTABLISH_IND 0x80034008
80 ; MMSS_RELEASE_IND 0x80044008
81
82
83
84 PRIM MMSS_ESTABLISH_REQ 0x80000008
85 {
86 ti ; transaction identifier
87 }
88
89
90
91
92
93
94 PRIM MMSS_RELEASE_REQ 0x80010008
95 {
96 ti ; transaction identifier
97 }
98
99
100
101
102
103
104 PRIM MMSS_DATA_REQ 0x80020008
105 {
106 d1 ; dummy
107 d2 ; dummy
108 sdu ; service data unit
109 }
110
111
112
113
114
115
116 PRIM MMSS_DATA_IND 0x80004008
117 {
118 d1 ; dummy
119 d2 ; dummy
120 sdu ; service data unit
121 }
122
123
124
125
126
127
128 PRIM MMSS_ERROR_IND 0x80014008
129 {
130 ti ; transaction identifier
131 cause ; error cause
132 }
133
134
135
136
137
138
139 PRIM MMSS_ESTABLISH_CNF 0x80024008
140 {
141 ti ; transaction identifier
142 }
143
144
145
146
147
148
149 PRIM MMSS_ESTABLISH_IND 0x80034008
150 {
151 d1 ; dummy
152 d2 ; dummy
153 sdu ; service data unit
154 }
155
156
157
158
159
160
161 PRIM MMSS_RELEASE_IND 0x80044008
162 {
163 ti ; transaction identifier
164 cause ; release cause
165 }
166
167
168
169
170
171
172
173
174