comparison cdg211/prim/ph.pdf @ 4:56abf6cf8a0b

cdg211: cdginc/mdf/pdf files from TCS211-20070608
author Mychaela Falconia <falcon@freecalypso.org>
date Mon, 26 Sep 2016 01:11:35 +0000
parents
children
comparison
equal deleted inserted replaced
3:93999a60b835 4:56abf6cf8a0b
1 ;********************************************************************************
2 ;*** File : ph.pdf
3 ;*** Creation : Fri Jun 08 13:58:13 CST 2007
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 : ph
9 ;*** Document No. : 6147.112.01.100
10 ;*** Document Date : 2001-10-26
11 ;*** Document Status: APPROVED
12 ;*** Document Author: SBK
13 ;********************************************************************************
14
15
16
17 PRAGMA SRC_FILE_TIME "Tue May 18 17:03:14 2004"
18 PRAGMA LAST_MODIFIED "2001-10-26"
19 PRAGMA ID_AND_VERSION "6147.112.01.100"
20
21
22
23 CONST DUMMY_PH 0 ; Dummy, not used, needed to satisfy tool chain which requires at least one constant definition in a SAP
24
25
26
27 VALTAB VAL_ch_type
28 VAL 0 CH_TYPE_SACCH "SACCH"
29 VAL 1 CH_TYPE_SDCCH "SDCCH"
30 VAL 2 CH_TYPE_FACCH "FACCH Full Rate"
31 VAL 3 "reserved"
32 VAL 4 "reserved"
33 VAL 5 "reserved"
34 VAL 6 "reserved"
35 VAL 7 CH_TYPE_FACCH_HR "FACCH Half Rate"
36
37
38
39
40 VAR l2_channel "Layer 2 channel-type" B
41
42 VAL @p_mphc - VAL_l2_channel@
43
44 VAR l_buf "length of content in bit" S
45
46
47 VAR o_buf "offset of content in bit" S
48
49
50 VAR buf "buffer content; the actual size of buf is determined and allocated at run-time and not restricted to 1;" B
51
52
53 VAR dummy "dummy not used" B
54
55
56
57
58
59 COMP sdu "message unit"
60 {
61 l_buf ; length of content in bit
62 o_buf ; offset of content in bit
63 buf [1] ; buffer content; the actual size of buf is determined and allocated at run-time and not restricted to 1;
64 }
65
66
67
68
69
70
71 ; PH_READY_TO_SEND 0x4100
72 ; PH_DATA_REQ 0x0100
73 ; PH_TRACE_IND 0x4102
74
75
76
77 PRIM PH_READY_TO_SEND 0x4100
78 {
79 l2_channel AS ch_type ; channel type
80 }
81
82
83
84
85
86
87 PRIM PH_DATA_REQ 0x0100
88 {
89 l2_channel AS ch_type ; channel type
90 dummy ; dummy not used; reserved
91 sdu ; message unit
92 }
93
94
95
96
97
98
99 PRIM PH_TRACE_IND 0x4102
100 {
101 dummy ; dummy not used; not used
102 }
103
104
105
106
107
108
109
110
111