udp.h 814 Bytes
/**
******************************************************************************
* @file         udp.h                                 
* @version      V1.0                          
* @date         2018-06-18                 
* @brief        udp.c的头文件  
*
* @company      深圳炜世科技有限公司
* @information  WIZnet W5100S官方代理商,全程技术支持,价格价格优势大!
* @website      www.wisioe.com
* @forum        www.w5100s.com
* @qqGroup      579842114                                                     
******************************************************************************
*/
#ifndef _UDP_H_
#define _UDP_H_

#include <stdint.h>

/* DATA_BUF_SIZE define for Loopback example */
#ifndef DATA_BUF_SIZE
#define DATA_BUF_SIZE  2048
#endif

/* UDP Loopback test example */
void do_udp(void);

#endif