修复多连接的问题
This commit is contained in:
27
App/app_main.h
Normal file
27
App/app_main.h
Normal file
@@ -0,0 +1,27 @@
|
||||
/*
|
||||
* 模块名称:Application Main Entry
|
||||
* 模块功能:应用层入口,由 main.c 调用完成所有应用初始化与启动
|
||||
* 适用平台:STM32F407ZGTx
|
||||
* 作者:王建锋
|
||||
* 创建日期:2026-07-19
|
||||
* 修改记录:
|
||||
* v1.0 2026-07-19 王建锋 创建初始版本
|
||||
*/
|
||||
|
||||
#ifndef __APP_MAIN_H
|
||||
#define __APP_MAIN_H
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
#include <stdint.h>
|
||||
|
||||
int app_main_init(void);
|
||||
void app_main_run(void);
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif /* __APP_MAIN_H */
|
||||
Reference in New Issue
Block a user