FreeCalypso > hg > fc-tourmaline
comparison cdg-hybrid/sap/rrrrlp.pdf @ 14:35f7a1dc9f7d
cdg-hybrid: import from Magnetite
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Fri, 16 Oct 2020 07:15:38 +0000 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
13:83146a4ae927 | 14:35f7a1dc9f7d |
---|---|
1 ;******************************************************************************** | |
2 ;*** File : rrrrlp.pdf | |
3 ;*** Creation : Wed Mar 11 09:58:48 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 : rrrrlp | |
9 ;*** Document No. : 0000.000.00.002 | |
10 ;*** Document Date : 2002-09-10 | |
11 ;*** Document Status: BEING_PROCESSED | |
12 ;*** Document Author: VK | |
13 ;******************************************************************************** | |
14 | |
15 | |
16 | |
17 PRAGMA SRC_FILE_TIME "Thu Nov 29 09:53:22 2007" | |
18 PRAGMA LAST_MODIFIED "2002-09-10" | |
19 PRAGMA ID_AND_VERSION "0000.000.00.002" | |
20 | |
21 | |
22 | |
23 CONST MAX_SDU_LEN 1 ; | |
24 CONST MAX_NCELL_L1 12 ; Max no. of NC layer 1 is able to measure | |
25 CONST MAX_NCELL_EOTD 15 ; Max no. of NC reported in the Measurement Assistance Data Element (3GPP 04.31) | |
26 CONST MAX_NCELL_EOTD_SI 32 ; Max no. of NC reported in the Measurement Assistance Data SI List Element (3GPP 04.31) | |
27 | |
28 | |
29 | |
30 | |
31 | |
32 | |
33 VAR dummy "Dummy" B | |
34 | |
35 | |
36 VAR l_buf "length in bits" S | |
37 | |
38 | |
39 VAR o_buf "offset in bits" S | |
40 | |
41 | |
42 VAR buf "bit buffer" B | |
43 | |
44 | |
45 VAR cr "Command or Response" B | |
46 | |
47 | |
48 | |
49 | |
50 | |
51 COMP sdu "Service Data Unit" | |
52 { | |
53 l_buf ; length in bits | |
54 o_buf ; offset in bits | |
55 buf [MAX_SDU_LEN] ; bit buffer | |
56 } | |
57 | |
58 | |
59 | |
60 | |
61 | |
62 | |
63 ; RRRRLP_DATA_IND 0x80004041 | |
64 ; RRRRLP_DATA_REQ 0x80000041 | |
65 ; RRRRLP_DATA_CNF 0x80014041 | |
66 ; RRRRLP_ERROR_IND 0x80024041 | |
67 | |
68 | |
69 | |
70 PRIM RRRRLP_DATA_IND 0x80004041 | |
71 { | |
72 cr ; Command / Response | |
73 sdu ; APDU_IND | |
74 } | |
75 | |
76 | |
77 | |
78 | |
79 | |
80 | |
81 PRIM RRRRLP_DATA_REQ 0x80000041 | |
82 { | |
83 cr ; Command / Response | |
84 sdu ; APDU_REQ | |
85 } | |
86 | |
87 | |
88 | |
89 | |
90 | |
91 | |
92 PRIM RRRRLP_DATA_CNF 0x80014041 | |
93 { | |
94 dummy ; Dummy | |
95 } | |
96 | |
97 | |
98 | |
99 | |
100 | |
101 | |
102 PRIM RRRRLP_ERROR_IND 0x80024041 | |
103 { | |
104 dummy ; Dummy | |
105 } | |
106 | |
107 | |
108 | |
109 | |
110 | |
111 | |
112 | |
113 | |
114 |