mirror of https://github.com/jeelabs/esp-link.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
229 B
17 lines
229 B
8 years ago
|
/*
|
||
|
* udp.h
|
||
|
*
|
||
|
* Created on: Sep 2nd 2016
|
||
|
* Author: BeeGee
|
||
|
*/
|
||
|
|
||
|
#ifndef MODULES_UDP_H_
|
||
|
#define MODULES_UDP_H_
|
||
|
|
||
|
#include "cmd.h"
|
||
|
|
||
|
void UDP_Setup(CmdPacket *cmd);
|
||
|
void UDP_Send(CmdPacket *cmd);
|
||
|
|
||
|
#endif /* MODULES_UDP_H_ */
|