]> Gitweb @ Texas Instruments - Open Source Git Repositories - git.TI.com/gitweb - znp-host-framework/znp-host-framework.git/blob - framework/platform/tirtos/rpcTransport.h
initial check in
[znp-host-framework/znp-host-framework.git] / framework / platform / tirtos / rpcTransport.h
1 /*\r
2  * rpcTransport.h\r
3  *\r
4  * This module contains the API for the zll SoC Host Interface.\r
5  *\r
6  * Copyright (C) 2013 Texas Instruments Incorporated - http://www.ti.com/ \r
7  * \r
8  * \r
9  *  Redistribution and use in source and binary forms, with or without \r
10  *  modification, are permitted provided that the following conditions \r
11  *  are met:\r
12  *\r
13  *    Redistributions of source code must retain the above copyright \r
14  *    notice, this list of conditions and the following disclaimer.\r
15  *\r
16  *    Redistributions in binary form must reproduce the above copyright\r
17  *    notice, this list of conditions and the following disclaimer in the \r
18  *    documentation and/or other materials provided with the   \r
19  *    distribution.\r
20  *\r
21  *    Neither the name of Texas Instruments Incorporated nor the names of\r
22  *    its contributors may be used to endorse or promote products derived\r
23  *    from this software without specific prior written permission.\r
24  *\r
25  *  THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \r
26  *  "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT \r
27  *  LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\r
28  *  A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT \r
29  *  OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, \r
30  *  SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT \r
31  *  LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\r
32  *  DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\r
33  *  THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT \r
34  *  (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE \r
35  *  OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\r
36  *\r
37  */\r
38 \r
39 #ifndef RPCTRANSPORT_H\r
40 #define RPCTRANSPORT_H\r
41 \r
42 #ifdef __cplusplus\r
43 extern "C"\r
44 {\r
45 #endif\r
46 \r
47 #include <stdint.h>\r
48 \r
49 /********************************************************************/\r
50 // ZigBee Soc API\r
51 int32_t rpcTransportOpen(char *devicePath, uint32_t port);\r
52 void rpcTransportClose(void);\r
53 void rpcTransportWrite(uint8_t* buf, uint8_t len);\r
54 uint8_t rpcTransportRead(uint8_t* buf, uint8_t len);\r
55 uint8_t rpcTransportPoll(void);\r
56 \r
57 #ifdef __cplusplus\r
58 }\r
59 #endif\r
60 \r
61 #endif /* RPCTRANSPORT_H */\r