Wifly Driver  V1.0
Udp.h
Go to the documentation of this file.
1 /*
2  * Udp.h
3  *
4  * Created on: 15/12/2015
5  * Author: Victor Mora
6  */
7 
8 #ifndef UDP_H_
9 #define UDP_H_
10 
19 uint8_t Udp_start(char *ssid, uint32_t AuthMode, char *passw);
20 
29 uint8_t Udp_sendValue( char *ipAddress, uint32_t localPort, uint32_t remotePort, uint32_t value);
30 
39 int32_t Udp_receiveValue( char *address, uint32_t localPort, uint32_t remotePort);
40 
41 #endif /* UDP_H_ */
uint8_t Udp_start(char *ssid, uint32_t AuthMode, char *passw)
Definition: Udp.c:41
int32_t Udp_receiveValue(char *address, uint32_t localPort, uint32_t remotePort)
Definition: Udp.c:80
uint8_t Udp_sendValue(char *ipAddress, uint32_t localPort, uint32_t remotePort, uint32_t value)
Definition: Udp.c:60