FreeCalypso > hg > fc-magnetite
comparison src/g23m-fad/rlp/rlp_rcvf.c @ 174:90eb61ecd093
src/g23m-fad: initial import from TCS3.2/LoCosto
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Wed, 12 Oct 2016 05:40:46 +0000 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
173:bf64d785238a | 174:90eb61ecd093 |
---|---|
1 /* | |
2 +----------------------------------------------------------------------------- | |
3 | Project : CSD (8411) | |
4 | Modul : Rlp_rcvf.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 defines the procedures and functions for | |
18 | the component Radio Link Protocol of the base station | |
19 +----------------------------------------------------------------------------- | |
20 */ | |
21 | |
22 #ifndef RLP_RCVF_C | |
23 #define RLP_RCVF_C | |
24 #endif | |
25 | |
26 #define ENTITY_RLP | |
27 | |
28 /*==== INCLUDES ===================================================*/ | |
29 | |
30 #include <string.h> | |
31 #include "typedefs.h" | |
32 #include "vsi.h" | |
33 #include "macdef.h" | |
34 #include "custom.h" | |
35 #include "gsm.h" | |
36 #include "cus_rlp.h" | |
37 #include "prim.h" | |
38 #include "tok.h" | |
39 #include "rlp.h" | |
40 | |
41 /*==== CONST =======================================================*/ | |
42 | |
43 /*==== TYPES =======================================================*/ | |
44 | |
45 /*==== VAR EXPORT ==================================================*/ | |
46 | |
47 /*==== VAR LOCAL ===================================================*/ | |
48 | |
49 /*==== FUNCTIONS ===================================================*/ | |
50 | |
51 /* | |
52 +------------------------------------------------------------------------------ | |
53 | Function : rcv_init | |
54 +------------------------------------------------------------------------------ | |
55 | Description : initialise the rlp data for the rcv formatter process | |
56 | | |
57 | Parameters : rlp_data_ptr - | |
58 | | |
59 | | |
60 | Return : - | |
61 +------------------------------------------------------------------------------ | |
62 */ | |
63 | |
64 | |
65 GLOBAL void rcv_init (void) | |
66 { | |
67 TRACE_FUNCTION ("rcv_init()"); | |
68 | |
69 INIT_STATE(RCV, RPDU_WAIT_FOR_A_BLOCK); | |
70 } |