Skip to content

Commit

Permalink
Needed value instead of rawValue attribute in ProtocolID.MemoryOperat…
Browse files Browse the repository at this point in the history
…ion. for DatagramWriteMemo Call
  • Loading branch information
jeff-tcs committed May 29, 2024
1 parent d6301a7 commit 1e764e9
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion openlcb/memoryservice.py
Original file line number Diff line number Diff line change
Expand Up @@ -268,7 +268,8 @@ def requestSpaceLength(self, space, nodeID, callback):
# send request
dgReqMemo = DatagramWriteMemo(
nodeID,
[DatagramService.ProtocolID.MemoryOperation.rawValue, 0x84, space]
#[DatagramService.ProtocolID.MemoryOperation.rawValue, 0x84, space]
[DatagramService.ProtocolID.MemoryOperation.value, 0x84, space]
)
self.service.sendDatagram(dgReqMemo)

Expand Down

0 comments on commit 1e764e9

Please sign in to comment.