FreeCalypso > hg > fc-selenite
comparison src/g23m-aci/gdd_dio/gdd_dio_drxf.h @ 1:d393cd9bb723
src/g23m-*: initial import from Magnetite
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Sun, 15 Jul 2018 04:40:46 +0000 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
0:b6a5e36de839 | 1:d393cd9bb723 |
---|---|
1 /* | |
2 +----------------------------------------------------------------------------- | |
3 | File : gdd_dio_drxf.h | |
4 +----------------------------------------------------------------------------- | |
5 | Copyright 2002 Texas Instruments Berlin, AG | |
6 | All rights reserved. | |
7 | | |
8 | This file is confidential and a trade secret of Texas | |
9 | Instruments Berlin, AG | |
10 | The receipt of or possession of this file does not convey | |
11 | any rights to reproduce or disclose its contents or to | |
12 | manufacture, use, or sell anything it may describe, in | |
13 | whole, or in part, without the specific written consent of | |
14 | Texas Instruments Berlin, AG. | |
15 +----------------------------------------------------------------------------- | |
16 | Purpose : Definitions for gdd_dio_drxf.c | |
17 +----------------------------------------------------------------------------- | |
18 */ | |
19 | |
20 #ifndef GDD_DIO_DRXF_H | |
21 #define GDD_DIO_DRXF_H | |
22 | |
23 /* | |
24 +------------------------------------------------------------------------------ | |
25 | Function : gdd_dio_rx_send_buffer | |
26 +------------------------------------------------------------------------------ | |
27 | Description : Signal handler for GDD_DIO_SIGNAL_RECEIVE_DATA | |
28 | This function tries to send a buffer to the client of GDD_DIO. | |
29 | | |
30 | Parameters : con_handle - connection handle | |
31 | buf - buffer | |
32 +------------------------------------------------------------------------------ | |
33 */ | |
34 EXTERN void gdd_dio_drx_sig_receive_data(T_GDD_CON_HANDLE con_handle, T_dio_buffer * buf); | |
35 | |
36 /* | |
37 +------------------------------------------------------------------------------ | |
38 | Function : gdd_dio_drx_ready_to_rcv | |
39 +------------------------------------------------------------------------------ | |
40 | Description : Called when the client is signalling that she is ready to receive. | |
41 | | |
42 | Parameters : con_handle - connection handle | |
43 +------------------------------------------------------------------------------ | |
44 */ | |
45 EXTERN void gdd_dio_drx_ready_to_rcv(T_GDD_CON_HANDLE con_handle); | |
46 | |
47 | |
48 #endif /* !GDD_DIO_DRXF_H */ | |
49 |