FreeCalypso > hg > freecalypso-sw
comparison gsm-fw/include/condat/message.h @ 662:a712c95b60c1
gsm-fw/include/condat: import of TI's g23m/condat/com/include
custom.h, pwr.h and rtc.h taken from TCS211 version,
the others are the versions from LoCosto
author | Michael Spacefalcon <msokolov@ivan.Harhan.ORG> |
---|---|
date | Sun, 28 Sep 2014 01:14:48 +0000 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
661:c36fe9d1da7e | 662:a712c95b60c1 |
---|---|
1 /* | |
2 +----------------------------------------------------------------------------- | |
3 | Project : GSM-PS (6147) | |
4 | Modul : MESSAGE | |
5 +----------------------------------------------------------------------------- | |
6 | Copyright 2002 Texas Instruments Berlin, AG | |
7 | All rights reserved. | |
8 | | |
9 | This file is confidential and a trade secret of Texas | |
10 | Instruments Berlin, AG | |
11 | The receipt of or possession of this file does not convey | |
12 | any rights to reproduce or disclose its contents or to | |
13 | manufacture, use, or sell anything it may describe, in | |
14 | whole, or in part, without the specific written consent of | |
15 | Texas Instruments Berlin, AG. | |
16 +----------------------------------------------------------------------------- | |
17 | Purpose : Message Definitions, depending on entity | |
18 +----------------------------------------------------------------------------- | |
19 */ | |
20 | |
21 #ifndef MESSAGE_H | |
22 #define MESSAGE_H | |
23 | |
24 /* | |
25 * Definitions for Message Types | |
26 */ | |
27 #include "mconst.cdg" | |
28 | |
29 /* | |
30 * Define the messages depending on the entity | |
31 */ | |
32 | |
33 #ifdef ENTITY_RR | |
34 | |
35 #define ADD_BSIZE 8 /* additional 8 bits (Skip Indicator/PD) */ | |
36 #include "m_rr.h" | |
37 #if defined (REL99) && defined (TI_PS_FF_EMR) | |
38 #include "m_rr_short_pd.h" | |
39 #endif | |
40 | |
41 #endif | |
42 | |
43 #ifdef ENTITY_RRLP | |
44 | |
45 #include "m_rrlp_asn1_msg.h" | |
46 | |
47 #endif | |
48 | |
49 #ifdef ENTITY_MM | |
50 | |
51 #include "m_mm.h" | |
52 | |
53 #endif | |
54 | |
55 #ifdef ENTITY_CC | |
56 | |
57 #include "m_cc.h" | |
58 | |
59 #endif | |
60 | |
61 #ifdef ENTITY_SS | |
62 | |
63 #include "m_ss.h" | |
64 | |
65 #endif | |
66 | |
67 #ifdef ENTITY_SMS | |
68 | |
69 #include "m_sms.h" | |
70 | |
71 #endif | |
72 | |
73 #ifdef ENTITY_T30 | |
74 | |
75 #include "m_t30.h" | |
76 | |
77 #endif | |
78 | |
79 #if defined (ENTITY_SMI) || defined (ENTITY_MFW) || defined (ENTITY_ACI) || defined (ENTITY_CST) | |
80 | |
81 #include "m_fac.h" | |
82 #include "m_sat.h" | |
83 #include "m_cc.val" | |
84 #include "m_sms.h" | |
85 | |
86 #endif | |
87 | |
88 | |
89 | |
90 #ifdef ENTITY_SIM | |
91 | |
92 #include "m_sat.h" | |
93 | |
94 #endif /* ENTITY_SIM */ | |
95 | |
96 | |
97 #ifdef ENTITY_GRR | |
98 | |
99 #include "m_grr.h" | |
100 #include "m_rr.h" | |
101 | |
102 #endif | |
103 | |
104 | |
105 #ifdef ENTITY_GRLC | |
106 | |
107 #include "m_grlc.h" | |
108 #include "m_rr.h" | |
109 | |
110 #endif | |
111 | |
112 #ifdef ENTITY_GMM | |
113 | |
114 #include "m_gmm.h" | |
115 #include "m_tst.h" | |
116 | |
117 #endif | |
118 | |
119 #ifdef ENTITY_SM | |
120 | |
121 #include "m_sm.h" | |
122 | |
123 #endif | |
124 | |
125 | |
126 | |
127 #endif | |
128 |