pylessard / python-udsoncan

Python implementation of UDS (ISO-14229) standard.
MIT License
586 stars 201 forks source link

Is Normal Fixed Addressing mode supported? #103

Closed danielfu11 closed 2 years ago

danielfu11 commented 2 years ago

Hi,

Is Normal Fixed Addressing mode supported? i.e. just using source address and target address. No txid or rxid needed.

pylessard commented 2 years ago

Absolutely. See how to define all types of addresses : https://can-isotp.readthedocs.io/en/latest/isotp/examples.html#different-type-of-addresses

You can pass an Address object to the TransportLayer (or CanStack).

Regards

pylessard commented 2 years ago

And more details about Address object here: https://can-isotp.readthedocs.io/en/latest/isotp/addressing.html

danielfu11 commented 2 years ago

Ahh yes I should have read the documentation more closely, thanks @pylessard!