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

The can package provides controller area network support for Python developers

Results 291 python-can issues
Sort by recently updated
recently updated
newest added

Did some experiments and measurements to conclude that these changes introduce less write delay. It is also likely that CPU load will be decreased with these changes.

Add support for [Ewert Energy CANdapter](https://www.ewertenergy.com/products/candapter/downloads/candapter_manual.pdf) extended arbitration ID ASCII identifier of `x` for the slcan interface implementation. Fixes #1506

Added additional parameter "listen_only" to open interface/channel with "L" command (in opposite to "O" command).

enhancement
backend:serial

### Describe the bug If standard frames are tried to send, the can id is cut at the 10th bit instead of 11th bit ### To Reproduce send a message...

bug

### Additional context OS and version: win10 Python version: 3.7.9 embed python-can version: 4.2.2 ```python import can configs = can.interface.detect_available_configs(interfaces="etas") for c in configs: print(c) ``` print: {'interface': 'etas', 'channel':...

bug

### Describe the bug When running socketcan to send message for more than 48 hours, it eventually would crash with "Cannot allocate memory" error message ### To Reproduce ``` from...

bug

Dear I write a script to read DTC using the awesome project. But my script may send requests while the ECU are all sleep and CANazlyzer project is running, At...

Hello. Problem is related to library python-udsoncan which can work on python-can bus. Original issue is here: https://github.com/pylessard/python-udsoncan/issues/183 The problem which I'm facing is `Transmit Buffer Full`. Is there an...

bug

### Describe the bug This may be similar to #1667 Occasionally when other devices on the CAN Bus are rebooted or turned, we see the TX buffer get full and...

bug

### Describe the bug When bus.recv raise an error notifier thread is stoped. Role of notifier is to cascade issue to the listener but not close itself ### To Reproduce...

bug