-
Notifications
You must be signed in to change notification settings - Fork 1k
Closed
Labels
Description
I need to implement a customized Modbus protocol implementation with pymodbus.
The message structure to read the hold register data is:
address (1byte) + func code (1byte) + Serial No:(10 bytes) + start reg: address (2 bytes) +length ( 2bytes)+ checksum
00 03 31 32 31 34 33 32 34 33 35 33 00 00 17 00 6E 25
There is an addiiton of 10 byte serial no after function code.
Can we implement such modified modbus protocol using pymodbus.
If not whats the recommendation