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.
13 lines
250 B
Go
13 lines
250 B
Go
1 year ago
|
package nmodbus
|
||
|
|
||
|
import (
|
||
|
"encoding/binary"
|
||
|
"git.noahlan.cn/noahlan/nnet/config"
|
||
|
)
|
||
|
|
||
|
// ModbusTCPConf ModbusTCP配置
|
||
|
type ModbusTCPConf struct {
|
||
|
config.EngineConf // 引擎配置
|
||
|
ByteOrder binary.ByteOrder // 字节序
|
||
|
}
|