comparison src/g23m-gsm/ss/cus_ss.h @ 1:d393cd9bb723

src/g23m-*: initial import from Magnetite
author Mychaela Falconia <falcon@freecalypso.org>
date Sun, 15 Jul 2018 04:40:46 +0000
parents
children
comparison
equal deleted inserted replaced
0:b6a5e36de839 1:d393cd9bb723
1 /*
2 +-----------------------------------------------------------------------------
3 | Project : GSM-PS (6147)
4 | Modul : CUS_SS
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 SS of the
18 | mobile station
19 |
20 | Use this header for definitions to integrate the
21 | protocol stack entity SS in your target system !
22 +-----------------------------------------------------------------------------
23 */
24
25 #ifndef CUS_SS_H
26 #define CUS_SS_H
27
28 /*==== CONSTANTS ==================================================*/
29 /*
30 * VSI_CALLER
31 *
32 * Description : For multithread applications the constant VSI_CALLER
33 * must be defined to identify the calling thread of the
34 * VSI-Interface. This must be done correponding to the
35 * type of T_VSI_CALLER in VSI.H. The comma symbol is
36 * neccessary because the vsi-functions are called
37 * like this vsi_xxx (VSI_CALLER par2, par3 ...)
38 */
39 #if defined (NEW_FRAME)
40 #ifdef OPTION_MULTITHREAD
41 #define VSI_CALLER ss_handle,
42 #define VSI_CALLER_SINGLE ss_handle
43 #else
44 #define VSI_CALLER
45 #endif
46 #else
47 #ifdef OPTION_MULTITHREAD
48 #define VSI_CALLER SS_NAME,
49 #else
50 #define VSI_CALLER
51 #endif
52 #endif
53
54 /*
55 * VERSION
56 *
57 * Description : The constants define the type and the value
58 * of a version identification. The version
59 * is part of the monitor struct.
60 */
61
62
63 #define T_VERSION char
64 #define VERSION_SS "SS 1.0"
65
66 #endif