Skip to content

Fix non-functional USB2CAN interface backend #534

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Mar 15, 2019
Merged
Changes from all commits
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
4 changes: 3 additions & 1 deletion can/interfaces/usb2can/usb2canabstractionlayer.py
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ def open(self, configuration, flags):
:param int flags: the flags to be set

:raises can.CanError: if any error occurred
:returns: Nothing
:returns: Valid handle for CANAL API functions on success
"""
try:
# we need to convert this into bytes, since the underlying DLL cannot
Expand All @@ -105,6 +105,8 @@ def open(self, configuration, flags):
if result <= 0:
raise can.CanError('CanalOpen() failed, configuration: "{}", return code: {}'
.format(configuration, result))
else:
return result

def close(self, handle):
try:
Expand Down