-
Notifications
You must be signed in to change notification settings - Fork 136
2.7 设备应用层 Machine
设备表示层表示的是一台需要通讯的设备,属于Modbus.Net自身对于IUtility的通用封装。
它是Modbus.Net里的高层API。
Modbus.Net里的设备表示层分为IMachineProperty和IMachineMethod。
-
IMachineProperty: 设备的属性。
-
AddressUnit:通讯的地址单元。
AddressUnit是用类的方式表示一个个的通讯地址,这样可以把只有位置的单一地址信息扩展成使用者更好理解的有具体意义的通讯地址信息。您可以在任何时候改变它。
-
AddressFormater: 地址格式化。
AddressFormater把通讯地址单元中的地址变为字符串。您可以在任何时候改变它。
-
AddressCombiner: 地址组合器。
AddressCombiner把离散的地址按照开发者自行定义的方式组合成连续地址,这样可以减少单次读写时候的通讯次数。
-
Endian: 数据的端格式。
BaseMachine同样需要引用端格式,在读写的时候按照正确的方式处理字节数组中的数据。
-
IMachineMethod:设备方法组的接口。
-
IMachineMethodData: 读写数据的过程接口。继承自IMachineMethod。
读数据的时候,首先组合通讯地址,得到一条或多条连续地址,然后把地址变成字符串和读取个数,向Utility发送相关信息。
写数据的时候,首先要先读一次数据,然后把需要写入的数据转换成字节数组之后替换相应的位置,再向Utility发送写入的相关信息。
-
使用者只能看到IMachineProperty,但是调用方法组中的方法时可以调用IMachineProperty中的 GetMachineMethods方法。
BaseMachine已经实现了IMachineMethodData,包括GetDatas/GetDatasAsync和SetDatas/SetDatasAsync。
Modbus.Net Hangzhou Delian Science Technology Co.,Ltd. © 2023
-
2 Specification of Modbus.Net main framework
- 2.1 Modbus.Net Architecture
- 2.2 Transmission Control Layer Controller
- 2.3 Transmission Link Layer Connector
- 2.4 Concrete Protocol Layer ProtocolLinker
- 2.5 Abstract Protocol Layer Protocol
- 2.6 Protocol Presentation Layer Utility
- 2.7 Device Application Layer Machine
- 2.8 Task Application Layer MachineJob
-
3 Using Modbus.Net to implement a protocol
- 3.1 Global Tools
- 3.2 Extends Protocol and ProtocolUnit according to protocol specification
- 3.3 Extends Connector to create a link method
- 3.4 Extends Machine and Utility, creating two apis
- 3.5 Extends API methods to Machine and Utility
- 3.6 Extends Formater, Translator and Combiner, Creating Encoding,Decoding,Combining methods for address
- 3.7 Extends Controller, to control message