修复多连接的问题

This commit is contained in:
2026-07-19 15:27:49 +08:00
parent 9ed4c22022
commit e06d849007
38 changed files with 2475 additions and 1953 deletions

25
App/task/net_task.h Normal file
View File

@@ -0,0 +1,25 @@
/*
* 模块名称Network Application Task
* 模块功能网络协议栈轮询、TCP/UDP 业务处理
* 适用平台STM32F407ZGTx + CH395F
* 作者:王建锋
* 创建日期2026-07-19
* 修改记录:
* v1.0 2026-07-19 王建锋 创建初始版本
*/
#ifndef __NET_TASK_H
#define __NET_TASK_H
#ifdef __cplusplus
extern "C" {
#endif
int net_task_init(void);
void net_task_func(void const *arg);
#ifdef __cplusplus
}
#endif
#endif /* __NET_TASK_H */