hardbyte / hardbyte/python-can

can.CanError not being raised

Open
#1,161 2 comments 0 reactions 0 assignees View on GitHub
Dominant language
Python
Stars
1.6k
Forks
697
PR merge metrics
No merged PRs in 30d

Description

I have an Ixxat USB-to-CAN V2 hooked up to an embedded system.
The system is initially shut down, without any electricity, so there is no way for the CAN to work, because there is only one lonely Ixxat and nothing can send the acknowledgement bit.
When calling network.send_message(canID, data) like this:
```
while tryingToEnterBackdoor:
try:
network.send_message(secretID, backDoorData)
tryingToEnterBackdoor = False
except can.CanError: # this error is currently not working as intended
time.sleep(0.002)
```
The Ixxat then starts flashing the red CAN LED and the console is outputting "CAN acknowledgment error" in red letters. So far this is expected.
However, the function network.send_message does not raise the can.CanError exception and instead we leave the loop instantly.

Contributor guide

Open the contributing guide

Assessment

This issue has not been assessed yet.

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.