Skip to content

Commit

Permalink
Use smaller of response size and size in OD (#395)
Browse files Browse the repository at this point in the history
  • Loading branch information
ljungholm committed Sep 17, 2023
1 parent 5418054 commit 6f9f06e
Showing 1 changed file with 14 additions and 13 deletions.
27 changes: 14 additions & 13 deletions canopen/sdo/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -114,21 +114,22 @@ def upload(self, index: int, subindex: int) -> bytes:
When node responds with an error.
"""
with self.open(index, subindex, buffering=0) as fp:
size = fp.size
response_size = fp.size
data = fp.read()
if size is None:
# Node did not specify how many bytes to use
# Try to find out using Object Dictionary
var = self.od.get_variable(index, subindex)
if var is not None:
# Found a matching variable in OD
# If this is a data type (string, domain etc) the size is
# unknown anyway so keep the data as is
if var.data_type not in objectdictionary.DATA_TYPES:
# Get the size in bytes for this variable
size = len(var) // 8

# If size is available through variable in OD, then use the smaller of the two sizes.
# Some devices send U32/I32 even if variable is smaller in OD
var = self.od.get_variable(index, subindex)
if var is not None:
# Found a matching variable in OD
# If this is a data type (string, domain etc) the size is
# unknown anyway so keep the data as is
if var.data_type not in objectdictionary.DATA_TYPES:
# Get the size in bytes for this variable
var_size = len(var) // 8
if response_size is None or var_size < response_size:
# Truncate the data to specified size
data = data[0:size]
data = data[0:var_size]
return data

def download(
Expand Down

0 comments on commit 6f9f06e

Please sign in to comment.