comparison src/g23m-gprs/gmm/gmm_syncs.c @ 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 : GPRS (8441)
4 | Modul : gmm_syncs.c
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 modul is part of the entity GMM and implements all
18 | functions to handles the incoming process internal signals as
19 | described in the SDL-documentation (SYNC-statemachine)
20 +-----------------------------------------------------------------------------
21 */
22
23
24 #ifndef GMM_SYNCS_C
25 #define GMM_SYNCS_C
26 #endif
27
28 #define ENTITY_GMM
29
30 /*==== INCLUDES =============================================================*/
31
32 #include "typedefs.h" /* to get Condat data types */
33 #include "vsi.h" /* to get a lot of macros */
34 #include "macdef.h"
35 #include "gprs.h"
36 #include "gsm.h" /* to get a lot of macros */
37 #include "ccdapi.h" /* to get CCD API */
38 #include "cnf_gmm.h" /* to get cnf-definitions */
39 #include "mon_gmm.h" /* to get mon-definitions */
40 #include "prim.h" /* to get the definitions of used SAP and directions */
41 #include "gmm.h" /* to get the global entity definitions */
42 #include "gmm_syncs.h"
43
44 /*==== CONST ================================================================*/
45
46 /*==== LOCAL VARS ===========================================================*/
47
48 /*==== PRIVATE FUNCTIONS ====================================================*/
49
50 /*==== PUBLIC FUNCTIONS =====================================================*/
51
52
53
54 /*
55 +------------------------------------------------------------------------------
56 | Function : sig_kern_sync_set_mm_state ( mm_state );
57 +------------------------------------------------------------------------------
58 | Description : Handles the internal signal sig_kern_sync_set_mm_state
59 |
60 | Parameters : mm_state - state of MM
61 |
62 +------------------------------------------------------------------------------
63 */
64 GLOBAL void sig_kern_sync_set_mm_state ( U8 mm_status )
65 {
66 gmm_data->sync.mm_cell_info.status = mm_status;
67 } /* sig_kern_rdy_force_ie_req() */
68