comparison src/g23m-aci/aci/cmh_udpar.c @ 162:53929b40109c

src/g23m-aci: initial import from TCS3.2/LoCosto
author Mychaela Falconia <falcon@freecalypso.org>
date Tue, 11 Oct 2016 02:02:43 +0000
parents
children
comparison
equal deleted inserted replaced
161:4557e2a9c18e 162:53929b40109c
1 /*
2 +-----------------------------------------------------------------------------
3 | Project : GSM-PS (6147)
4 | Modul : CMH_UDPAR
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 :
18 +-----------------------------------------------------------------------------
19 */
20
21 #ifndef CMH_UDPAR_C
22 #define CMH_UDPAR_C
23 #endif
24
25 #include "aci_all.h"
26
27 /*==== INCLUDES ===================================================*/
28 #include "aci_cmh.h"
29
30 #ifdef FAX_AND_DATA
31 #include "aci_fd.h"
32 #endif
33
34 #include "ati_cmd.h"
35 #include "aci_cmd.h"
36 #include "aci_io.h"
37
38 #include "psa.h"
39 #include "psa_ra.h"
40 #include "psa_cc.h"
41 #include "cmh.h"
42 #include "cmh_ra.h"
43
44 #include "wap_aci.h"
45
46 /*==== CONSTANTS ==================================================*/
47
48 /*==== EXPORT =====================================================*/
49 EXTERN SHORT cmhCC_UDPA_Configurated (void);
50 EXTERN SHORT cmhCC_UDPA_Deconfigurated (void);
51
52 /*==== VARIABLES ==================================================*/
53
54 /*==== FUNCTIONS ==================================================*/
55
56
57 /*
58 +-------------------------------------------------------------------+
59 | PROJECT : GSM-PS (6147) MODULE : CMH_UDPAR |
60 | ROUTINE : cmhUDPA_Configurated |
61 +-------------------------------------------------------------------+
62
63 PURPOSE : UDPA configurated
64 */
65
66 GLOBAL T_ACI_RETURN cmhUDPA_Configurated ( void )
67 {
68 TRACE_FUNCTION ("cmhUDPA_Configurated()");
69
70 cmhCC_UDPA_Configurated();
71
72 return (AT_CMPL);
73 }
74
75 /*
76 +-------------------------------------------------------------------+
77 | PROJECT : GSM-PS (6147) MODULE : CMH_UDPAR |
78 | ROUTINE : cmhUDPA_Configurated |
79 +-------------------------------------------------------------------+
80
81 PURPOSE : UDPA deconfigurated
82 */
83
84 GLOBAL T_ACI_RETURN cmhUDPA_Deconfigurated ( void )
85 {
86 TRACE_FUNCTION ("cmhUDPA_Deconfigurated()");
87
88 cmhCC_UDPA_Deconfigurated();
89
90 return (AT_CMPL);
91 }