You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ntool-biz/nmodbus/config.go

13 lines
250 B
Go

package nmodbus
import (
"encoding/binary"
"git.noahlan.cn/noahlan/nnet/config"
)
// ModbusTCPConf ModbusTCP配置
type ModbusTCPConf struct {
config.EngineConf // 引擎配置
ByteOrder binary.ByteOrder // 字节序
}