20 lines
662 B
C
20 lines
662 B
C
|
|
/**
|
||
|
|
******************************************************************************
|
||
|
|
* @file user\global\board_config.h
|
||
|
|
* @author luhuaishuai
|
||
|
|
* @version v0.1
|
||
|
|
* @date 2023-10-11
|
||
|
|
* @brief Briefly describe the function of your function
|
||
|
|
******************************************************************************
|
||
|
|
*/
|
||
|
|
#ifndef __BOARD_CONFIG_H
|
||
|
|
#define __BOARD_CONFIG_H
|
||
|
|
|
||
|
|
/* Private includes ----------------------------------------------------------*/
|
||
|
|
|
||
|
|
#define LINK_SERVER_PORT 6001 // 网关UDP服务端口
|
||
|
|
#define LINK_APP_PORT 6002 // 桩通讯端口
|
||
|
|
#define LINK_STAKE_PORT 6001 // 桩通讯端口
|
||
|
|
|
||
|
|
#endif /* __BOARD_CONFIG_H */
|