Wifly Driver  V1.0
Tcp.h
Go to the documentation of this file.
1 /*
2  * Tcp.h
3  *
4  * Created on: 15/12/2015
5  * Author: Victor Mora
6  */
7 
8 #ifndef TCP_H_
9 #define TCP_H_
10 
11 
20 uint8_t Tcp_start(char *ssid, uint32_t AuthMode, char *passw);
21 
30 uint8_t Tcp_sendValue( char *ipAddress, uint32_t remotePort, uint32_t value);
31 
39 int32_t Tcp_receiveValue( char *address, uint32_t remotePort);
40 
41 #endif /* TCP_H_ */
uint8_t Tcp_start(char *ssid, uint32_t AuthMode, char *passw)
Definition: Tcp.c:41
int32_t Tcp_receiveValue(char *address, uint32_t remotePort)
Definition: Tcp.c:80
uint8_t Tcp_sendValue(char *ipAddress, uint32_t remotePort, uint32_t value)
Definition: Tcp.c:60