FreeCalypso > hg > fc-magnetite
comparison cdg211/prim/mnlc.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 : mnlc.pdf | |
3 ;*** Creation : Fri Jun 08 13:58:00 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 : mnlc | |
9 ;*** Document No. : 8443.104.02.003 | |
10 ;*** Document Date : 2002-10-25 | |
11 ;*** Document Status: SUBMITTED | |
12 ;*** Document Author: TML | |
13 ;******************************************************************************** | |
14 | |
15 | |
16 | |
17 PRAGMA SRC_FILE_TIME "Mon Nov 24 15:50:46 2003" | |
18 PRAGMA LAST_MODIFIED "2002-10-25" | |
19 PRAGMA ID_AND_VERSION "8443.104.02.003" | |
20 | |
21 | |
22 | |
23 CONST L_MAX_CALLED_BCD_NO_LENGTH 10 ; Max Bcd number length (digits) | |
24 CONST CURSOR_SMS_TEXT_140 140 ; Position SMS Message | |
25 | |
26 | |
27 | |
28 VALTAB VAL_data_valid | |
29 VAL 0 DATA_VALID "" | |
30 VAL 1 DATA_INVALID "" | |
31 | |
32 | |
33 | |
34 | |
35 VAR reference "Reference" S | |
36 | |
37 | |
38 VAR bcd "Bcd Number" B | |
39 | |
40 | |
41 VAR data_valid "Cursor Data Valid" B | |
42 | |
43 VAL @p_mnlc - VAL_data_valid@ | |
44 | |
45 VAR number_length "Number of decimal digits in the Bcd number" B | |
46 | |
47 | |
48 VAR sms_text "SMS text" B | |
49 | |
50 | |
51 | |
52 | |
53 | |
54 COMP called_party_bcd_num "called Party Bcd number" | |
55 { | |
56 number_length ; Number Length | |
57 bcd [L_MAX_CALLED_BCD_NO_LENGTH] ; Bcd Number | |
58 } | |
59 | |
60 | |
61 | |
62 | |
63 | |
64 | |
65 ; MNLC_SMS_MEAS_REQ 0x80000044 | |
66 ; MNLC_SMS_MEAS_CNF 0x80004044 | |
67 | |
68 | |
69 | |
70 PRIM MNLC_SMS_MEAS_REQ 0x80000044 | |
71 { | |
72 reference ; Reference SMS request | |
73 called_party_bcd_num ; Called Bcd Number | |
74 } | |
75 | |
76 | |
77 | |
78 | |
79 | |
80 | |
81 PRIM MNLC_SMS_MEAS_CNF 0x80004044 | |
82 { | |
83 reference ; Reference SMS request | |
84 data_valid ; Cursor Data Valid | |
85 sms_text [CURSOR_SMS_TEXT_140] ; Cursor SMS | |
86 } | |
87 | |
88 | |
89 | |
90 | |
91 | |
92 | |
93 | |
94 | |
95 |