FreeCalypso > hg > freecalypso-sw
comparison gsm-fw/include/condat/ra_l1int.h @ 662:a712c95b60c1
gsm-fw/include/condat: import of TI's g23m/condat/com/include
custom.h, pwr.h and rtc.h taken from TCS211 version,
the others are the versions from LoCosto
author | Michael Spacefalcon <msokolov@ivan.Harhan.ORG> |
---|---|
date | Sun, 28 Sep 2014 01:14:48 +0000 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
661:c36fe9d1da7e | 662:a712c95b60c1 |
---|---|
1 /* | |
2 +----------------------------------------------------------------------------- | |
3 | Project : GSM-F&D (8411) | |
4 | Modul : RA_L1INT | |
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 defines the Layer 1 Functional Interface (L1INT) of the RA | |
18 +----------------------------------------------------------------------------- | |
19 */ | |
20 | |
21 #ifndef RA_L1INT_H | |
22 #define RA_L1INT_H | |
23 | |
24 #include "cl_ribu.h" | |
25 | |
26 EXTERN void l1i_ra_activate_req | |
27 ( | |
28 T_RA_ACTIVATE_REQ *ra_activate_req | |
29 ); | |
30 | |
31 EXTERN void l1i_ra_datatrans_req | |
32 ( | |
33 T_RA_DATATRANS_REQ *ra_datatrans_req | |
34 ); | |
35 | |
36 EXTERN void l1i_ra_deactivate_req | |
37 ( | |
38 T_RA_DEACTIVATE_REQ *ra_deactivate_req | |
39 ); | |
40 | |
41 EXTERN void l1i_ra_data_req | |
42 ( | |
43 T_RA_DATA_REQ *ra_data_req, | |
44 T_FRAME_DESC *frame_desc | |
45 ); | |
46 | |
47 EXTERN void l1i_ra_data_req_new | |
48 ( | |
49 T_FD *pFD | |
50 ); | |
51 | |
52 EXTERN void l1i_ra_break_req | |
53 ( | |
54 T_RA_BREAK_REQ *ra_break_req | |
55 ); | |
56 | |
57 EXTERN void l1i_ra_detect_req | |
58 ( | |
59 T_RA_DETECT_REQ *ra_detect_req | |
60 ); | |
61 | |
62 EXTERN void l1i_ra_modify_req | |
63 ( | |
64 T_RA_MODIFY_REQ *ra_modify_req | |
65 ); | |
66 #endif | |
67 |