FreeCalypso > hg > fc-magnetite
comparison src/aci2/aci/psa_btif.c @ 3:93999a60b835
src/aci2, src/condat2: import of g23m/condat source pieces from TCS211
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Mon, 26 Sep 2016 00:29:36 +0000 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
2:c41a534f33c6 | 3:93999a60b835 |
---|---|
1 /* | |
2 +----------------------------------------------------------------------------- | |
3 | Project : GSM-PS (6147) | |
4 | Modul : PSA_BTIF | |
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 : This module defines the functions for the protocol | |
18 | stack adapter for BTI. | |
19 +----------------------------------------------------------------------------- | |
20 */ | |
21 | |
22 #ifndef PSA_BTIF_C | |
23 #define PSA_BTIF_C | |
24 #endif | |
25 | |
26 #ifdef MFW | |
27 #define ENTITY_MFW | |
28 #else | |
29 #ifdef SMI | |
30 #define ENTITY_SMI | |
31 #else | |
32 #define ENTITY_ACI | |
33 #endif | |
34 #endif | |
35 | |
36 #define ACI_MEMBER | |
37 | |
38 #undef TRACING | |
39 | |
40 /*==== INCLUDES ===================================================*/ | |
41 #include <string.h> | |
42 #include <stdlib.h> | |
43 #include <stdio.h> | |
44 #include "typedefs.h" | |
45 #include "pconst.cdg" | |
46 #include "mconst.cdg" | |
47 #include "message.h" | |
48 #include "ccdapi.h" | |
49 #include "vsi.h" | |
50 #include "custom.h" | |
51 #include "gsm.h" | |
52 #include "prim.h" | |
53 #include "cnf_aci.h" | |
54 #include "mon_aci.h" | |
55 #include "pei.h" | |
56 #include "tok.h" | |
57 #include "aci_cmh.h" | |
58 #include "ati_cmd.h" | |
59 #include "aci_cmd.h" | |
60 | |
61 #include "dti.h" | |
62 | |
63 #include "aci_fd.h" | |
64 #include "aci.h" | |
65 #include "psa.h" | |
66 #include "psa_bti.h" | |
67 #include "cmh.h" | |
68 #include "psa_util.h" | |
69 | |
70 /*==== CONSTANTS ==================================================*/ | |
71 #define ITM_WDT (14) /* item width in chars */ | |
72 #define HDR_WDT (10) /* header width in chars */ | |
73 | |
74 /*==== TYPES ======================================================*/ | |
75 /*==== EXPORT =====================================================*/ | |
76 /*==== VARIABLES ==================================================*/ | |
77 /*==== FUNCTIONS ==================================================*/ | |
78 | |
79 /* | |
80 +-------------------------------------------------------------------+ | |
81 | PROJECT : GSM-PS (6147) MODULE : PSA_BTI | | |
82 | ROUTINE : psaBTI_Init | | |
83 +-------------------------------------------------------------------+ | |
84 | |
85 PURPOSE : initialize the protocol stack adapter for BTI. | |
86 | |
87 */ | |
88 | |
89 GLOBAL void psaBTI_Init ( void ) | |
90 { | |
91 /* | |
92 * For future use.. | |
93 */ | |
94 } | |
95 | |
96 /*==== EOF ========================================================*/ | |
97 |