FreeCalypso > hg > fc-magnetite
comparison src/g23m-fad/ra/cus_ra.h @ 174:90eb61ecd093
src/g23m-fad: initial import from TCS3.2/LoCosto
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Wed, 12 Oct 2016 05:40:46 +0000 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
173:bf64d785238a | 174:90eb61ecd093 |
---|---|
1 /* | |
2 +----------------------------------------------------------------------------- | |
3 | Project : GSM-F&D (8411) | |
4 | Modul : CUS_RA | |
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 : Custom dependent definitions for MMI of the | |
18 | mobile station | |
19 | | |
20 | Use this header for definitions to integrate the | |
21 | protocol stack entity MMI in your target system ! | |
22 +----------------------------------------------------------------------------- | |
23 */ | |
24 | |
25 #ifndef CUS_RA_H | |
26 #define CUS_RA_H | |
27 | |
28 /*==== CONSTANTS ==================================================*/ | |
29 | |
30 /* | |
31 * VERSION | |
32 * | |
33 * Description : The constants define the type and the value | |
34 * of a version identification. The version | |
35 * is part of the monitor struct. | |
36 */ | |
37 | |
38 #define T_VERSION char | |
39 #define VERSION_RA "RA 2.0" /* NEW_FRAME only */ | |
40 | |
41 /* | |
42 * VSI_CALLER | |
43 * | |
44 * Description : For multithread applications the constant VSI_CALLER | |
45 * must be defined to identify the calling thread of the | |
46 * VSI-Interface. This must be done correponding to the | |
47 * type of T_VSI_CALLER in VSI.H. The comma symbol is | |
48 * neccessary because the vsi-functions are called | |
49 * like this vsi_xxx (VSI_CALLER par2, par3 ...) | |
50 */ | |
51 #ifdef OPTION_MULTITHREAD | |
52 #define VSI_CALLER ra_handle, | |
53 #define VSI_CALLER_SINGLE ra_handle | |
54 #else | |
55 #define VSI_CALLER | |
56 #define VSI_CALLER_SINGLE | |
57 #endif | |
58 | |
59 #endif |