comparison src/cs/riviera/rvm/rvm_use_id_list.h @ 147:e63a3f1e12f0

src/cs/riviera/rvm/rvm_use_id_list.h: tab fix
author Mychaela Falconia <falcon@freecalypso.org>
date Sun, 09 Oct 2016 06:15:32 +0000
parents 945cf7f506b2
children 34ee53b81f33
comparison
equal deleted inserted replaced
146:fb95e3f83dc5 147:e63a3f1e12f0
1 /** 1 /**
2 * @file rvm_use_id_list.h 2 * @file rvm_use_id_list.h
3 * 3 *
4 * List of common SWE USE IDs. 4 * List of common SWE USE IDs.
5 * 5 *
6 * Note on USE ID management: 6 * Note on USE ID management:
7 * This file should only contain USE ID of SWE part of the standard TI releases. 7 * This file should only contain USE ID of SWE part of the standard TI releases.
8 * Development SWE as well as customer SWE should use the rvm_ext_use_id_list.h 8 * Development SWE as well as customer SWE should use the rvm_ext_use_id_list.h
9 * file for their USE IDs. 9 * file for their USE IDs.
10 * 10 *
11 * @author David Lamy-Charrier (d-lamy@ti.com) 11 * @author David Lamy-Charrier (d-lamy@ti.com)
12 * @version 0.1 12 * @version 0.1
13 */ 13 */
14 14
15 /* 15 /*
16 * Revision History: 16 * Revision History:
17 * 17 *
18 * Date Author Modification 18 * Date Author Modification
19 * ------------------------------------------------------------------- 19 * -------------------------------------------------------------------
20 * 10/25/2001 David Lamy-Charrier Create. 20 * 10/25/2001 David Lamy-Charrier Create.
21 * 11/20/2001 Vincent Oberle Added BUILD_MESSAGE_OFFSET. 21 * 11/20/2001 Vincent Oberle Added BUILD_MESSAGE_OFFSET.
22 * 22 *
23 * (C) Copyright 2001 by Texas Instruments Incorporated, All Rights Reserved 23 * (C) Copyright 2001 by Texas Instruments Incorporated, All Rights Reserved
24 */ 24 */
25 25
26 26
38 #define BUILD_USE_ID(cust, cluster, mask) ( (cust<<31) | ( (cluster & 0x7FFF) <<16) | (mask & 0xFFFF) ) 38 #define BUILD_USE_ID(cust, cluster, mask) ( (cust<<31) | ( (cluster & 0x7FFF) <<16) | (mask & 0xFFFF) )
39 39
40 /** 40 /**
41 * Macro for building the message offset from the USE ID. 41 * Macro for building the message offset from the USE ID.
42 */ 42 */
43 #define BUILD_MESSAGE_OFFSET(useid) ( (useid & 0xFFFF0000) + \ 43 #define BUILD_MESSAGE_OFFSET(useid) ( (useid & 0xFFFF0000) + \
44 ((((useid & 0xAAAA) ? 1 : 0) + \ 44 ((((useid & 0xAAAA) ? 1 : 0) + \
45 ((useid & 0xCCCC) ? 2 : 0) + \ 45 ((useid & 0xCCCC) ? 2 : 0) + \
46 ((useid & 0xF0F0) ? 4 : 0) + \ 46 ((useid & 0xF0F0) ? 4 : 0) + \
47 ((useid & 0xFF00) ? 8 : 0)) << 12) ) 47 ((useid & 0xFF00) ? 8 : 0)) << 12) )
48 48
49 49
50 #define RIVIERA_USE_ID_CLUSTER_1 (1) 50 #define RIVIERA_USE_ID_CLUSTER_1 (1)
51 51
52 #define DRIVERS_USE_ID_CLUSTER_1 (10) 52 #define DRIVERS_USE_ID_CLUSTER_1 (10)
53 53
54 #define BLUETOOTH_USE_ID_CLUSTER_1 (20) 54 #define BLUETOOTH_USE_ID_CLUSTER_1 (20)
55 55
56 #define SERVICES_USE_ID_CLUSTER_1 (30) 56 #define SERVICES_USE_ID_CLUSTER_1 (30)
57 #define SERVICES_USE_ID_CLUSTER_2 (31) 57 #define SERVICES_USE_ID_CLUSTER_2 (31)
58 58
59 #define TEST_USE_ID_CLUSTER_1 (40) 59 #define TEST_USE_ID_CLUSTER_1 (40)
60 60
61 #define CONDAT_USE_ID_CLUSTER_1 (50) 61 #define CONDAT_USE_ID_CLUSTER_1 (50)
62 62
63 #define JAVA_USE_ID_CLUSTER_1 (60) 63 #define JAVA_USE_ID_CLUSTER_1 (60)
64 64
65 #define TCPIP_USE_ID_CLUSTER_1 (70) 65 #define TCPIP_USE_ID_CLUSTER_1 (70)
66 66
67 #define OBIGO_USE_ID_CLUSTER_1 (80) 67 #define OBIGO_USE_ID_CLUSTER_1 (80)
68 #define OBIGO_USE_ID_CLUSTER_2 (81) 68 #define OBIGO_USE_ID_CLUSTER_2 (81)
69 69
70 #define WIDCOMM_BT_USE_ID_CLUSTER_1 (90) 70 #define WIDCOMM_BT_USE_ID_CLUSTER_1 (90)
71 71
72 /** 72 /**
73 * @name Widcomm cluster 73 * @name Widcomm cluster
74 * 74 *
75 * Riviera insfrastructure 75 * Riviera insfrastructure
76 */ 76 */
77 /*@{*/ 77 /*@{*/
78 78
81 #define GKI_USE_ID BUILD_USE_ID( 0, WIDCOMM_BT_USE_ID_CLUSTER_1, 0x0004) 81 #define GKI_USE_ID BUILD_USE_ID( 0, WIDCOMM_BT_USE_ID_CLUSTER_1, 0x0004)
82 #define BTH_USE_ID BUILD_USE_ID( 0, WIDCOMM_BT_USE_ID_CLUSTER_1, 0x0008) 82 #define BTH_USE_ID BUILD_USE_ID( 0, WIDCOMM_BT_USE_ID_CLUSTER_1, 0x0008)
83 #define BTUI_USE_ID BUILD_USE_ID( 0, WIDCOMM_BT_USE_ID_CLUSTER_1, 0x0010) 83 #define BTUI_USE_ID BUILD_USE_ID( 0, WIDCOMM_BT_USE_ID_CLUSTER_1, 0x0010)
84 #define RPC_USE_ID BUILD_USE_ID( 0, WIDCOMM_BT_USE_ID_CLUSTER_1, 0x0020) 84 #define RPC_USE_ID BUILD_USE_ID( 0, WIDCOMM_BT_USE_ID_CLUSTER_1, 0x0020)
85 /** 85 /**
86 * @name Riviera cluster 86 * @name Riviera cluster
87 * 87 *
88 * Riviera insfrastructure 88 * Riviera insfrastructure
89 */ 89 */
90 /*@{*/ 90 /*@{*/
91 91
92 /* this one is only used for trace purpose */ 92 /* this one is only used for trace purpose */
93 #define RVM_USE_ID BUILD_USE_ID( 0, RIVIERA_USE_ID_CLUSTER_1, 0x0001) 93 #define RVM_USE_ID BUILD_USE_ID( 0, RIVIERA_USE_ID_CLUSTER_1, 0x0001)
94 94
95 #define RVT_USE_ID BUILD_USE_ID( 0, RIVIERA_USE_ID_CLUSTER_1, 0x0002) 95 #define RVT_USE_ID BUILD_USE_ID( 0, RIVIERA_USE_ID_CLUSTER_1, 0x0002)
96 96
97 #define TI_PRF_USE_ID BUILD_USE_ID( 0, RIVIERA_USE_ID_CLUSTER_1, 0x0004) 97 #define TI_PRF_USE_ID BUILD_USE_ID( 0, RIVIERA_USE_ID_CLUSTER_1, 0x0004)
98 98
99 /*@}*/ 99 /*@}*/
100 100
101 101
102 102
103 /** 103 /**
104 * @name Driver cluster 104 * @name Driver cluster
105 * 105 *
106 * Drivers 106 * Drivers
107 */ 107 */
108 /*@{*/ 108 /*@{*/
109 109
110 #define R2D_USE_ID BUILD_USE_ID( 0, DRIVERS_USE_ID_CLUSTER_1, 0x0001) 110 #define R2D_USE_ID BUILD_USE_ID( 0, DRIVERS_USE_ID_CLUSTER_1, 0x0001)
111 111
112 #define RTC_USE_ID BUILD_USE_ID( 0, DRIVERS_USE_ID_CLUSTER_1, 0x0002) 112 #define RTC_USE_ID BUILD_USE_ID( 0, DRIVERS_USE_ID_CLUSTER_1, 0x0002)
113 113
114 #define FFS_USE_ID BUILD_USE_ID( 0, DRIVERS_USE_ID_CLUSTER_1, 0x0004) 114 #define FFS_USE_ID BUILD_USE_ID( 0, DRIVERS_USE_ID_CLUSTER_1, 0x0004)
115 115
116 #define KPD_USE_ID BUILD_USE_ID( 0, DRIVERS_USE_ID_CLUSTER_1, 0x0008) 116 #define KPD_USE_ID BUILD_USE_ID( 0, DRIVERS_USE_ID_CLUSTER_1, 0x0008)
117 117
118 #define SPI_USE_ID BUILD_USE_ID( 0, DRIVERS_USE_ID_CLUSTER_1, 0x0010) 118 #define SPI_USE_ID BUILD_USE_ID( 0, DRIVERS_USE_ID_CLUSTER_1, 0x0010)
119 119
120 /* Replacing PWR_USE_ID */ 120 /* Replacing PWR_USE_ID */
121 #define LCC_USE_ID BUILD_USE_ID( 0, DRIVERS_USE_ID_CLUSTER_1, 0x0020) 121 #define LCC_USE_ID BUILD_USE_ID( 0, DRIVERS_USE_ID_CLUSTER_1, 0x0020)
122 122
123 123
124 #define RGUI_USE_ID BUILD_USE_ID( 0, DRIVERS_USE_ID_CLUSTER_1, 0x0040) 124 #define RGUI_USE_ID BUILD_USE_ID( 0, DRIVERS_USE_ID_CLUSTER_1, 0x0040)
125 125
126 /*@}*/ 126 /*@}*/
127 127
128 128
129 129
130 130
131 /** 131 /**
132 * @name Bluetooth cluster 132 * @name Bluetooth cluster
133 * 133 *
134 * Bluetooth related SWE 134 * Bluetooth related SWE
135 */ 135 */
136 /*@{*/ 136 /*@{*/
137 137
138 #define HCI_USE_ID BUILD_USE_ID( 0, BLUETOOTH_USE_ID_CLUSTER_1, 0x0001) 138 #define HCI_USE_ID BUILD_USE_ID( 0, BLUETOOTH_USE_ID_CLUSTER_1, 0x0001)
139 139
140 #define L2CAP_USE_ID BUILD_USE_ID( 0, BLUETOOTH_USE_ID_CLUSTER_1, 0x0002) 140 #define L2CAP_USE_ID BUILD_USE_ID( 0, BLUETOOTH_USE_ID_CLUSTER_1, 0x0002)
141 141
142 #define BTCTRL_USE_ID BUILD_USE_ID( 0, BLUETOOTH_USE_ID_CLUSTER_1, 0x0004) 142 #define BTCTRL_USE_ID BUILD_USE_ID( 0, BLUETOOTH_USE_ID_CLUSTER_1, 0x0004)
143 143
144 #define RFC_USE_ID BUILD_USE_ID( 0, BLUETOOTH_USE_ID_CLUSTER_1, 0x0008) 144 #define RFC_USE_ID BUILD_USE_ID( 0, BLUETOOTH_USE_ID_CLUSTER_1, 0x0008)
145 145
146 #define SPP_USE_ID BUILD_USE_ID( 0, BLUETOOTH_USE_ID_CLUSTER_1, 0x0010) 146 #define SPP_USE_ID BUILD_USE_ID( 0, BLUETOOTH_USE_ID_CLUSTER_1, 0x0010)
147 147
148 #define HS_USE_ID BUILD_USE_ID( 0, BLUETOOTH_USE_ID_CLUSTER_1, 0x0020) 148 #define HS_USE_ID BUILD_USE_ID( 0, BLUETOOTH_USE_ID_CLUSTER_1, 0x0020)
149 149
150 #define HSG_USE_ID BUILD_USE_ID( 0, BLUETOOTH_USE_ID_CLUSTER_1, 0x0040) 150 #define HSG_USE_ID BUILD_USE_ID( 0, BLUETOOTH_USE_ID_CLUSTER_1, 0x0040)
151 151
152 #define SDP_USE_ID BUILD_USE_ID( 0, BLUETOOTH_USE_ID_CLUSTER_1, 0x0080) 152 #define SDP_USE_ID BUILD_USE_ID( 0, BLUETOOTH_USE_ID_CLUSTER_1, 0x0080)
153 153
154 #define DUN_USE_ID BUILD_USE_ID( 0, BLUETOOTH_USE_ID_CLUSTER_1, 0x0100) 154 #define DUN_USE_ID BUILD_USE_ID( 0, BLUETOOTH_USE_ID_CLUSTER_1, 0x0100)
155 155
156 #define FAX_USE_ID BUILD_USE_ID( 0, BLUETOOTH_USE_ID_CLUSTER_1, 0x0200) 156 #define FAX_USE_ID BUILD_USE_ID( 0, BLUETOOTH_USE_ID_CLUSTER_1, 0x0200)
157 157
158 #define OBX_USE_ID BUILD_USE_ID( 0, BLUETOOTH_USE_ID_CLUSTER_1, 0x0400) 158 #define OBX_USE_ID BUILD_USE_ID( 0, BLUETOOTH_USE_ID_CLUSTER_1, 0x0400)
159 159
160 #define OPP_USE_ID BUILD_USE_ID( 0, BLUETOOTH_USE_ID_CLUSTER_1, 0x0800) 160 #define OPP_USE_ID BUILD_USE_ID( 0, BLUETOOTH_USE_ID_CLUSTER_1, 0x0800)
161 161
162 #define FTP_USE_ID BUILD_USE_ID( 0, BLUETOOTH_USE_ID_CLUSTER_1, 0x1000) 162 #define FTP_USE_ID BUILD_USE_ID( 0, BLUETOOTH_USE_ID_CLUSTER_1, 0x1000)
163 163
164 #define SYN_USE_ID BUILD_USE_ID( 0, BLUETOOTH_USE_ID_CLUSTER_1, 0x2000) 164 #define SYN_USE_ID BUILD_USE_ID( 0, BLUETOOTH_USE_ID_CLUSTER_1, 0x2000)
165 165
166 /*@}*/ 166 /*@}*/
167 167
168 168
169 169
170 /** 170 /**
171 * @name Services cluster 171 * @name Services cluster
172 * 172 *
173 * Services 173 * Services
174 */ 174 */
175 /*@{*/ 175 /*@{*/
176 176
177 #define EXPL_USE_ID BUILD_USE_ID( 0, SERVICES_USE_ID_CLUSTER_1, 0x0001) 177 #define EXPL_USE_ID BUILD_USE_ID( 0, SERVICES_USE_ID_CLUSTER_1, 0x0001)
178 178
179 #define AUDIO_USE_ID BUILD_USE_ID( 0, SERVICES_USE_ID_CLUSTER_1, 0x0002) 179 #define AUDIO_USE_ID BUILD_USE_ID( 0, SERVICES_USE_ID_CLUSTER_1, 0x0002)
180 180
181 #define ETM_USE_ID BUILD_USE_ID( 0, SERVICES_USE_ID_CLUSTER_1, 0x0004) 181 #define ETM_USE_ID BUILD_USE_ID( 0, SERVICES_USE_ID_CLUSTER_1, 0x0004)
182 182
183 #define DAR_USE_ID BUILD_USE_ID( 0, SERVICES_USE_ID_CLUSTER_1, 0x0008) 183 #define DAR_USE_ID BUILD_USE_ID( 0, SERVICES_USE_ID_CLUSTER_1, 0x0008)
184 184
185 #define MKS_USE_ID BUILD_USE_ID( 0, SERVICES_USE_ID_CLUSTER_1, 0x0010) 185 #define MKS_USE_ID BUILD_USE_ID( 0, SERVICES_USE_ID_CLUSTER_1, 0x0010)
186 186
187 #define MPM_USE_ID BUILD_USE_ID( 0, SERVICES_USE_ID_CLUSTER_1, 0x0020) 187 #define MPM_USE_ID BUILD_USE_ID( 0, SERVICES_USE_ID_CLUSTER_1, 0x0020)
188 188
189 #define LLS_USE_ID BUILD_USE_ID( 0, SERVICES_USE_ID_CLUSTER_1, 0x0040) 189 #define LLS_USE_ID BUILD_USE_ID( 0, SERVICES_USE_ID_CLUSTER_1, 0x0040)
190 190
191 #define ATP_USE_ID BUILD_USE_ID( 0, SERVICES_USE_ID_CLUSTER_1, 0x0080) 191 #define ATP_USE_ID BUILD_USE_ID( 0, SERVICES_USE_ID_CLUSTER_1, 0x0080)
192 192
193 #define ATP_UART_USE_ID BUILD_USE_ID( 0, SERVICES_USE_ID_CLUSTER_1, 0x0100) 193 #define ATP_UART_USE_ID BUILD_USE_ID( 0, SERVICES_USE_ID_CLUSTER_1, 0x0100)
194 194
195 #define MDC_USE_ID BUILD_USE_ID( 0, SERVICES_USE_ID_CLUSTER_1, 0x0200) 195 #define MDC_USE_ID BUILD_USE_ID( 0, SERVICES_USE_ID_CLUSTER_1, 0x0200)
196 196
197 #define TTY_USE_ID BUILD_USE_ID( 0, SERVICES_USE_ID_CLUSTER_1, 0x0400) 197 #define TTY_USE_ID BUILD_USE_ID( 0, SERVICES_USE_ID_CLUSTER_1, 0x0400)
198 198
199 #define DCM_USE_ID BUILD_USE_ID( 0, SERVICES_USE_ID_CLUSTER_1, 0x0800) 199 #define DCM_USE_ID BUILD_USE_ID( 0, SERVICES_USE_ID_CLUSTER_1, 0x0800)
200 200
201 #define DCFG_USE_ID BUILD_USE_ID( 0, SERVICES_USE_ID_CLUSTER_1, 0x1000) 201 #define DCFG_USE_ID BUILD_USE_ID( 0, SERVICES_USE_ID_CLUSTER_1, 0x1000)
202 202
203 #define MMS_USE_ID BUILD_USE_ID( 0, SERVICES_USE_ID_CLUSTER_1, 0x1000) 203 #define MMS_USE_ID BUILD_USE_ID( 0, SERVICES_USE_ID_CLUSTER_1, 0x1000)
204 /*@}*/ 204 /*@}*/
205 205
206 206
207 /** 207 /**
208 * @name Services cluster - 2 208 * @name Services cluster - 2
209 * 209 *
210 * Services 210 * Services
211 */ 211 */
212 /*@{*/ 212 /*@{*/
213 213
214 #define MFW_USE_ID BUILD_USE_ID( 0, SERVICES_USE_ID_CLUSTER_2, 0x0001) 214 #define MFW_USE_ID BUILD_USE_ID( 0, SERVICES_USE_ID_CLUSTER_2, 0x0001)
215 215
216 #define SMBS_USE_ID BUILD_USE_ID( 0, SERVICES_USE_ID_CLUSTER_2, 0x0002) 216 #define SMBS_USE_ID BUILD_USE_ID( 0, SERVICES_USE_ID_CLUSTER_2, 0x0002)
217 217
218 #define AUDIO_BGD_USE_ID BUILD_USE_ID( 0, SERVICES_USE_ID_CLUSTER_2, 0x0004) 218 #define AUDIO_BGD_USE_ID BUILD_USE_ID( 0, SERVICES_USE_ID_CLUSTER_2, 0x0004)
219 219
220 #define IMG_USE_ID BUILD_USE_ID( 0, SERVICES_USE_ID_CLUSTER_2, 0x0008) 220 #define IMG_USE_ID BUILD_USE_ID( 0, SERVICES_USE_ID_CLUSTER_2, 0x0008)
221 221
222 #define MDL_USE_ID BUILD_USE_ID( 0, SERVICES_USE_ID_CLUSTER_2, 0x0010) 222 #define MDL_USE_ID BUILD_USE_ID( 0, SERVICES_USE_ID_CLUSTER_2, 0x0010)
223 223
224 /*@}*/ 224 /*@}*/
225 225
226 226
227 /** 227 /**
228 * @name Test cluster 228 * @name Test cluster
229 * 229 *
230 * Tests related SWEs 230 * Tests related SWEs
231 */ 231 */
232 /*@{*/ 232 /*@{*/
233 233
234 #define RTEST_USE_ID BUILD_USE_ID( 0, TEST_USE_ID_CLUSTER_1, 0x0001) 234 #define RTEST_USE_ID BUILD_USE_ID( 0, TEST_USE_ID_CLUSTER_1, 0x0001)
235 235
236 /* maybe put in another cluster */ 236 /* maybe put in another cluster */
237 #define TUT_USE_ID BUILD_USE_ID( 0, TEST_USE_ID_CLUSTER_1, 0x0002) 237 #define TUT_USE_ID BUILD_USE_ID( 0, TEST_USE_ID_CLUSTER_1, 0x0002)
238 238
239 /*@}*/ 239 /*@}*/
240 240
241 241
242 /** 242 /**
243 * @name J2ME cluster 243 * @name J2ME cluster
244 * 244 *
245 * Java related SWEs 245 * Java related SWEs
246 */ 246 */
247 /*@{*/ 247 /*@{*/
248 248
249 #define KIL_USE_ID BUILD_USE_ID( 0, JAVA_USE_ID_CLUSTER_1, 0x0001) 249 #define KIL_USE_ID BUILD_USE_ID( 0, JAVA_USE_ID_CLUSTER_1, 0x0001)
250 250
251 #define KGC_USE_ID BUILD_USE_ID( 0, JAVA_USE_ID_CLUSTER_1, 0x0002) 251 #define KGC_USE_ID BUILD_USE_ID( 0, JAVA_USE_ID_CLUSTER_1, 0x0002)
252 252
253 #define KCL_USE_ID BUILD_USE_ID( 0, JAVA_USE_ID_CLUSTER_1, 0x0004) 253 #define KCL_USE_ID BUILD_USE_ID( 0, JAVA_USE_ID_CLUSTER_1, 0x0004)
254 254
255 #define KMM_USE_ID BUILD_USE_ID( 0, JAVA_USE_ID_CLUSTER_1, 0x0008) 255 #define KMM_USE_ID BUILD_USE_ID( 0, JAVA_USE_ID_CLUSTER_1, 0x0008)
256 256
257 #define KNM_USE_ID BUILD_USE_ID( 0, JAVA_USE_ID_CLUSTER_1, 0x0010) 257 #define KNM_USE_ID BUILD_USE_ID( 0, JAVA_USE_ID_CLUSTER_1, 0x0010)
258 258
259 #define UVM_USE_ID BUILD_USE_ID( 0, JAVA_USE_ID_CLUSTER_1, 0x0020) 259 #define UVM_USE_ID BUILD_USE_ID( 0, JAVA_USE_ID_CLUSTER_1, 0x0020)
260 260
261 #define KZP_USE_ID BUILD_USE_ID( 0, JAVA_USE_ID_CLUSTER_1, 0x0040) 261 #define KZP_USE_ID BUILD_USE_ID( 0, JAVA_USE_ID_CLUSTER_1, 0x0040)
262 262
263 #define KPG_USE_ID BUILD_USE_ID( 0, JAVA_USE_ID_CLUSTER_1, 0x0080) 263 #define KPG_USE_ID BUILD_USE_ID( 0, JAVA_USE_ID_CLUSTER_1, 0x0080)
264 264
265 #define JTM_USE_ID BUILD_USE_ID( 0, JAVA_USE_ID_CLUSTER_1, 0x0100) 265 #define JTM_USE_ID BUILD_USE_ID( 0, JAVA_USE_ID_CLUSTER_1, 0x0100)
266 266
267 /*@}*/ 267 /*@}*/
268 268
269 269
270 270
271 /** 271 /**
272 * @name Stack TCP/IP cluster 272 * @name Stack TCP/IP cluster
273 * 273 *
274 * Stack TCP/IP. 274 * Stack TCP/IP.
275 */ 275 */
276 /*@{*/ 276 /*@{*/
277 #define RNET_USE_ID BUILD_USE_ID( 0, TCPIP_USE_ID_CLUSTER_1, 0x0001) 277 #define RNET_USE_ID BUILD_USE_ID( 0, TCPIP_USE_ID_CLUSTER_1, 0x0001)
284 284
285 /*@}*/ 285 /*@}*/
286 286
287 287
288 /** 288 /**
289 * @name Condat cluster 289 * @name Condat cluster
290 * 290 *
291 * Condat related SWEs 291 * Condat related SWEs
292 */ 292 */
293 /*@{*/ 293 /*@{*/
294 294
295 #define CONDAT_FRM_USE_ID BUILD_USE_ID( 0, CONDAT_USE_ID_CLUSTER_1, 0x0001) 295 #define CONDAT_FRM_USE_ID BUILD_USE_ID( 0, CONDAT_USE_ID_CLUSTER_1, 0x0001)
296 296
297 297
298 /*@}*/ 298 /*@}*/
299 299
300 300
301 301
302 /** 302 /**
303 * @name Obigo cluster 303 * @name Obigo cluster
304 * 304 *
305 * Obigo related SWE's 305 * Obigo related SWE's
306 */ 306 */
307 /*@{*/ 307 /*@{*/
308 #define MSME_USE_ID BUILD_USE_ID( 0, OBIGO_USE_ID_CLUSTER_1, 0x0001) 308 #define MSME_USE_ID BUILD_USE_ID( 0, OBIGO_USE_ID_CLUSTER_1, 0x0001)
336 #define JASE_USE_ID BUILD_USE_ID( 0, OBIGO_USE_ID_CLUSTER_1, 0x4000) 336 #define JASE_USE_ID BUILD_USE_ID( 0, OBIGO_USE_ID_CLUSTER_1, 0x4000)
337 /*@{*/ 337 /*@{*/
338 338
339 339
340 /** 340 /**
341 * @name Obigo second cluster 341 * @name Obigo second cluster
342 * 342 *
343 * Obigo related test SWE's 343 * Obigo related test SWE's
344 */ 344 */
345 #define EMAE_USE_ID BUILD_USE_ID( 0, OBIGO_USE_ID_CLUSTER_2, 0x0001) 345 #define EMAE_USE_ID BUILD_USE_ID( 0, OBIGO_USE_ID_CLUSTER_2, 0x0001)
346 346