comparison src/g23m-gprs/grlc/grlc_meass.h @ 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 : Definitions for service MEAS.
18 +-----------------------------------------------------------------------------
19 */
20
21 #ifndef GRLC_MEASS_H
22 #define GRLC_MEASS_H
23
24 /* TM Signals */
25
26 EXTERN void sig_tm_meas_ptm ( void );
27
28 /* RD Signals */
29
30 EXTERN void sig_rd_meas_qual_rpt_sent
31 ( void );
32
33 /* Access Functions */
34
35 EXTERN void meas_grlc_init ( void );
36
37 EXTERN UBYTE meas_grlc_c_get_value ( void );
38
39 EXTERN void meas_grlc_c_get_c_value
40 ( T_CGRLC_c_value *c_value );
41
42 EXTERN void meas_grlc_c_set_c_value
43 ( T_CGRLC_c_value *c_value );
44
45 EXTERN void meas_c_val_update_ptm ( T_MAC_PWR_CTRL_IND *mac_pwr_ctrl_ind,
46 T_CGRLC_glbl_pwr_ctrl_param *pwr_ctrl_param,
47 T_CGRLC_freq_param *freq_param );
48
49 EXTERN void meas_c_restart ( void );
50
51 EXTERN UBYTE meas_sv_get_value ( void );
52
53 EXTERN void meas_sv_update ( T_MAC_PWR_CTRL_IND *mac_pwr_ctrl_ind,
54 T_CGRLC_glbl_pwr_ctrl_param *pwr_ctrl_param,
55 T_CGRLC_freq_param *freq_param );
56
57 EXTERN void meas_sv_restart ( void );
58
59 EXTERN UBYTE meas_sq_get_rxqual_value
60 ( void );
61
62 EXTERN void meas_sq_update ( T_BER_IND *ber_ind );
63
64 EXTERN void meas_sq_restart ( void );
65
66 EXTERN void meas_int_get_rel_i_level
67 ( T_ilev *i_level );
68
69 #endif /* #ifndef GRLC_MEASS_H */
70