Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
#516 custom data block fix
  • Loading branch information
dhoomakethu committed Jul 28, 2020
commit 70c533a459e7aa17cb947e4bdf986199a2a3475e
2 changes: 1 addition & 1 deletion examples/common/custom_datablock.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ def setValues(self, address, value):
:param address: The starting address
:param values: The new values to be set
"""
super(ModbusSparseDataBlock, self).setValues(address, value)
super(CustomDataBlock, self).setValues(address, value)

# whatever you want to do with the written value is done here,
# however make sure not to do too much work here or it will
Expand Down