python-udsoncan icon indicating copy to clipboard operation
python-udsoncan copied to clipboard

Python implementation of UDS (ISO-14229) standard.

Results 30 python-udsoncan issues
Sort by recently updated
recently updated
newest added

added ide ignore; added super init call for Client; fixed some errors for connections.py

Hi, First of all its not a issue, this is a question about modifying udsoncan library. As I see you haven't add the "nodeIdentificationNumber" parameter for Communication Control service. I...

Hi, I'm trying to send a can message in a virtualized Linux machine (VM on native Windows), and a keep receiving a timeout in tpsock/__init__.py line 108 (self._socket.send(data,flags)) when I...

Hi, if I run the following code: ``` tpsock = isotp.socket(timeout=0.1) tpsock.bind(... conn = IsoTPSocketConnection(..., tpsock = tpsock) client = Client(conn,... client.tester_present() ``` The message is successfully sent, but I...

Closing SocketConnection stucks on self.rxthread.join(). sock: ![image](https://github.com/pylessard/python-udsoncan/assets/62187663/a3b4f472-70cb-4c9f-ad31-f8cbded62466) connector = SocketConnection(sock=sock) It looks like [this issue](https://github.com/pylessard/python-udsoncan/issues/191) but for SocketConnection and not IsoTPSocketConnection (for IsoTPSocketConnection there is no stuck) using release 1.22.1...

When a isotp error occurs, it triggers a call to a callback, that one can supply to the constructor of the isotp stack called `error_handler`. The default of this callback...

Points of improvement: - Made **Close** device after **Discconnect**. Previously, cant reconnect to the device (ERR_DEVICE_IN_USE). - Avoid debug log after error log. - Raising abnormal exception around connection to...

Hi! First of all thanks for this great piece of software. I think I have found an incorrect behavior, but maybe I'm wrong. Consider the following code snippet: ```python with...

Hi, There seems to be no client functions for WWHOBD. Is there any plan of adding support for WWHOBD?