FreeCalypso > hg > fc-magnetite
comparison src/g23m-gprs/grlc/grlc_measp.c @ 183:219afcfc6250
src/g23m-gprs: initial import from TCS3.2/LoCosto
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Thu, 13 Oct 2016 04:24:13 +0000 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
182:f02d0a0e1849 | 183:219afcfc6250 |
---|---|
1 /* | |
2 +----------------------------------------------------------------------------- | |
3 | Project : GPRS (8441) | |
4 | Modul : GRLC | |
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 implements primitive handler functions for service | |
18 | MEAS of entity GRLC. | |
19 +----------------------------------------------------------------------------- | |
20 */ | |
21 | |
22 #ifndef GRLC_MEASP_C | |
23 #define GRLC_MEASP_C | |
24 #endif /* #ifndef GRLC_MEASP_C */ | |
25 | |
26 #define ENTITY_GRLC | |
27 | |
28 /*==== INCLUDES =============================================================*/ | |
29 | |
30 #include "typedefs.h" | |
31 #include "vsi.h" | |
32 #include "macdef.h" | |
33 #include "gprs.h" | |
34 #include "gsm.h" | |
35 #include "ccdapi.h" | |
36 #include "prim.h" | |
37 #include "message.h" | |
38 #include "grlc.h" | |
39 #include "grlc_measp.h" | |
40 | |
41 /*==== CONST ================================================================*/ | |
42 | |
43 /*==== LOCAL VARS ===========================================================*/ | |
44 | |
45 /*==== LOCAL TYPES===========================================================*/ | |
46 | |
47 /*==== PUBLIC FUNCTIONS =====================================================*/ | |
48 /* | |
49 +------------------------------------------------------------------------------ | |
50 | Function : meas_int_level_req | |
51 +------------------------------------------------------------------------------ | |
52 | Description : | |
53 | | |
54 | Parameters : | |
55 | | |
56 +------------------------------------------------------------------------------ | |
57 */ | |
58 GLOBAL void meas_int_level_req ( T_CGRLC_INT_LEVEL_REQ *int_level_req ) | |
59 { | |
60 TRACE_FUNCTION( "meas_int_level_req" ); | |
61 | |
62 grlc_data->meas.ilev = *int_level_req; | |
63 | |
64 PFREE( int_level_req ); | |
65 | |
66 } /* meas_int_level_req() */ |