comparison src/g23m-gprs/upm/upm_dispatcher.h @ 197:2cf312e56ee7

src/g23m-gprs/upm: import from LoCosto source
author Mychaela Falconia <falcon@freecalypso.org>
date Fri, 14 Oct 2016 01:21:46 +0000
parents
children
comparison
equal deleted inserted replaced
196:a04cde1fb771 197:2cf312e56ee7
1 /*----------------------------------------------------------------------------
2 | Project : 3G PS
3 | Module : UPM
4 +-----------------------------------------------------------------------------
5 | Copyright 2003 Texas Instruments.
6 | All rights reserved.
7 |
8 | This file is confidential and a trade secret of Texas
9 | Instruments .
10 | The receipt of or possession of this file does not convey
11 | any rights to reproduce or disclose its contents or to
12 | manufacture, use, or sell anything it may describe, in
13 | whole, or in part, without the specific written consent of
14 | Texas Instruments.
15 +-----------------------------------------------------------------------------
16 | Purpose: Process dispatcher helper functions in the UPM entity.
17 | For design details, see:
18 | 8010.939 UPM Detailed Specification
19 +---------------------------------------------------------------------------*/
20
21 /*==== DECLARATION CONTROL =================================================*/
22
23 #ifndef UPM_DISPATCHER_H
24 #define UPM_DISPATCHER_H
25
26 /*==== INCLUDES =============================================================*/
27 #include "typedefs.h"
28
29 #include "upm.h"
30
31 #ifdef TI_UMTS
32 #include "upm_dispatcher_umts.h"
33 #endif
34
35 #ifdef TI_GPRS
36 #include "upm_dispatcher_gsm.h"
37 #endif
38
39 #ifdef TI_DUAL_MODE
40 #include "upm_dispatcher_dual_mode.h"
41 #endif
42
43 #ifndef UPM_WITHOUT_USER_PLANE
44 #include "upm_dispatcher_user_plane.h"
45 #endif
46
47 /*==== CONSTS ===============================================================*/
48
49 /*==== TYPES ================================================================*/
50
51 /*==== EXPORTS ==============================================================*/
52
53 extern void upm_disp_sm_activate_started_ind (T_SM_ACTIVATE_STARTED_IND *prim);
54 extern void upm_disp_sm_activate_ind (T_SM_ACTIVATE_IND *sm_activate_ind);
55 extern void upm_disp_sm_modify_ind (T_SM_MODIFY_IND *sm_modify_ind);
56
57 extern void upm_disp_upm_count_req (T_UPM_COUNT_REQ *prim);
58
59 #endif /* UPM_DISPATCHER_H */
60 /*==== END OF FILE ==========================================================*/