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/handler/data.go

9 lines
305 B
Go

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

package handler
type DataMgr struct {
Coils []byte // 线圈DO数字输出
DiscreteInputs []byte // 离散输入DI数字输入
HoldingRegisters []uint16 // 保持寄存器AO模拟输出
InputRegisters []uint16 // 输入寄存器AI模拟输入
}