Add tcp client/server echo example. @EVB_LN882x

This commit is contained in:
wuliang
2020-04-10 22:16:46 +08:00
parent c6894019ec
commit 895b8de45c
7 changed files with 537 additions and 125 deletions

View File

@@ -0,0 +1,12 @@
#ifndef __TCP_SERVER_ECHO_H__
#define __TCP_SERVER_ECHO_H__
#include "stdint.h"
void tcp_server_echo_task_creat(uint32_t port);
#endif /* __TCP_SERVER_ECHO_H__ */