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,16 @@
#ifndef __TCP_CLIENT_ECHO_H__
#define __TCP_CLIENT_ECHO_H__
#include "stdint.h"
typedef struct{
uint8_t * ip;
uint32_t port;
}target_ser_t;
void tcp_client_echo_task_creat(uint8_t * ser_ip, uint32_t port);
#endif /* __TCP_CLIENT_ECHO_H__ */