FreeCalypso > hg > fc-magnetite
comparison src/g23m-gprs/sndcp/sndcp_suas.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 : sndcp_suas.h | |
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 sndcp_suas.c | |
18 +----------------------------------------------------------------------------- | |
19 */ | |
20 | |
21 /*---- HISTORY --------------------------------------------------------------*/ | |
22 #if 0 | |
23 | |
24 $Log:: /GPRS/Condat/MS/SRC/SNDCP/sndcp_suas.h $ | |
25 * | |
26 * 10 15.05.00 16:55 Hk | |
27 * T H E E N D. | |
28 * | |
29 * 9 15.05.00 16:16 Hk | |
30 * backup. | |
31 * | |
32 * 8 9.05.00 18:59 Hk | |
33 * XID negotiation work in progress. Backup. | |
34 * | |
35 * 7 18.04.00 18:47 Hk | |
36 * Backup. Work on XID negotiation. | |
37 * | |
38 * 6 30.03.00 16:05 Hk | |
39 * | |
40 * 5 17.03.00 18:03 Hk | |
41 * Acknowledged data transfer is now implemented and tested uplink and | |
42 * downlink. | |
43 * | |
44 * 4 10.03.00 17:49 Hk | |
45 * Backup. First downlink ack data transfer ok (case 700). | |
46 * | |
47 * 3 7.03.00 18:24 Hk | |
48 * Backup. Last check in before adding extra downlink service for timeout and | |
49 * re-ordering. | |
50 * | |
51 * 2 25.02.00 18:27 Hk | |
52 * Backup, test case 346 runs (deactivation of ack context including ll | |
53 * release. | |
54 * | |
55 * 1 17.02.00 16:06 Hk | |
56 * Initial. | |
57 * | |
58 * 12 17.02.00 14:32 Hk | |
59 * Last checkin before maybe splitting sd in two services for 1.unack and 2. | |
60 * ack op mode. | |
61 * | |
62 * 11 11.02.00 18:49 Hk | |
63 * Establishment of LLC acknowledged operation mode. First test case SNDCP035 | |
64 * successful. Backup. | |
65 * | |
66 * 10 9.02.00 15:03 Hk | |
67 * Backup. Unacknowledged data transfer possible. Up to testcase SNDCP034. | |
68 * | |
69 * 9 7.02.00 18:02 Hk | |
70 * Backup, error situations in service sd, up to testcase 028. | |
71 * | |
72 * 8 3.02.00 18:08 Hk | |
73 * Backup, downlink transfer up to test case 016. | |
74 * | |
75 * 7 26.01.00 16:24 Hk | |
76 * Made services sd and nd compilable. | |
77 * | |
78 * 6 13.01.00 18:07 Hk | |
79 * Backup. Test case SNDCP008 successful. | |
80 * | |
81 * 5 7.01.00 18:09 Hk | |
82 * Backup. Data transfer in service su in case of LL_READY_IND, test case | |
83 * SNDCP005. | |
84 * | |
85 * 4 4.01.00 18:56 Hk | |
86 * Work on uplink data transfer, test case SNDCP003 successful. | |
87 * | |
88 * 3 30.12.99 17:16 Hk | |
89 * Last backup before millennium crash. Continued work on service su, data | |
90 * transfer. | |
91 * | |
92 * 2 29.12.99 17:21 Hk | |
93 * Started to rework service su, queue of inoming sn_nuitdata_req prims will | |
94 * be designed in more detail in SDL. | |
95 * | |
96 * 1 29.12.99 10:54 Hk | |
97 * Initial. | |
98 | |
99 #endif | |
100 | |
101 #ifndef SNDCP_SUAS_H | |
102 #define SNDCP_SUAS_H | |
103 | |
104 EXTERN void sig_cia_sua_cia_comp_ind(T_CIA_COMP_IND* cia_comp_ind); | |
105 | |
106 EXTERN void sig_mg_sua_delete_pdus (UBYTE nsapi, UBYTE sapi, BOOL destroy); | |
107 | |
108 EXTERN void sig_mg_sua_n201 (UBYTE sapi, USHORT n201); | |
109 | |
110 EXTERN void sig_nu_sua_data_req (T_SN_DATA_REQ* sn_data_req, | |
111 UBYTE npdu_number, | |
112 UBYTE nsapi, | |
113 UBYTE sapi | |
114 ); | |
115 EXTERN void sig_mg_sua_reset_ind (UBYTE sapi); | |
116 | |
117 EXTERN void sig_mg_sua_resume (UBYTE sapi); | |
118 | |
119 EXTERN void sig_mg_sua_suspend (UBYTE sapi); | |
120 | |
121 | |
122 | |
123 | |
124 | |
125 #endif /* !SNDCP_SUAS_H */ | |
126 |