Merge branch 'develop' into local-test
All checks were successful
local-test分支打包构建docker并发布运行 / Docker-Build (push) Successful in 1m31s
All checks were successful
local-test分支打包构建docker并发布运行 / Docker-Build (push) Successful in 1m31s
This commit is contained in:
commit
5627ca5315
@ -136,6 +136,7 @@ type ElectricMachineryConfig struct {
|
|||||||
|
|
||||||
// BtmVobcConfig 11 号线 BTM vobc 网关设备配置
|
// BtmVobcConfig 11 号线 BTM vobc 网关设备配置
|
||||||
type BtmVobcConfig struct {
|
type BtmVobcConfig struct {
|
||||||
|
LocalUdpIp string `json:"LocalUdpIp" description:"本机监听接收UDP ip 配置"`
|
||||||
LocalUdpPort int `json:"localUdpPort" description:"本机监听接收UDP端口"`
|
LocalUdpPort int `json:"localUdpPort" description:"本机监听接收UDP端口"`
|
||||||
RemoteIp string `json:"remoteIp" description:"btm串口设备IP配置"`
|
RemoteIp string `json:"remoteIp" description:"btm串口设备IP配置"`
|
||||||
RemoteUdpPort int `json:"remoteUdpPort" description:"btm串口设备UDP端口"`
|
RemoteUdpPort int `json:"remoteUdpPort" description:"btm串口设备UDP端口"`
|
||||||
|
2
third_party/btm_vobc/btm_vobc.go
vendored
2
third_party/btm_vobc/btm_vobc.go
vendored
@ -48,7 +48,7 @@ func (b *BtmVobcClient) Start(btmVobcManage BtmVobcManage) {
|
|||||||
slog.Info("11号线 btm vobc配置未开启...")
|
slog.Info("11号线 btm vobc配置未开启...")
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
udpServer := udp.NewServer(fmt.Sprintf(":%d", cfg.RemoteUdpPort), b.handleBtmVobcFrames)
|
udpServer := udp.NewServer(fmt.Sprintf("%v:%d", cfg.LocalUdpIp, cfg.LocalUdpPort), b.handleBtmVobcFrames)
|
||||||
err := udpServer.Listen()
|
err := udpServer.Listen()
|
||||||
if err != nil {
|
if err != nil {
|
||||||
slog.Error("11号线 btm VOBC 服务启动失败...")
|
slog.Error("11号线 btm VOBC 服务启动失败...")
|
||||||
|
Loading…
Reference in New Issue
Block a user