Skip to content
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

IsoTpMessage: support ISO-TP w/ CAN FD #1524

Draft
wants to merge 12 commits into
base: master
Choose a base branch
from
Prev Previous commit
Next Next commit
fix
  • Loading branch information
sshane committed Feb 6, 2024
commit 8eab8ebe7c35b6d02fc8ab1169cae67e33eb9f1d
2 changes: 1 addition & 1 deletion python/uds.py
Original file line number Diff line number Diff line change
Expand Up @@ -598,7 +598,7 @@ def _uds_request(self, service_type: SERVICE_TYPE, subfunction: Optional[int] =
req += data

# send request, wait for response
max_len = 8 if self.sub_addr is None else 7
max_tx_len = 8 if self.sub_addr is None else 7
isotp_msg = IsoTpMessage(self._can_client, timeout=self.timeout, debug=self.debug, max_tx_len=max_tx_len)
isotp_msg.send(req)
response_pending = False
Expand Down