Mamert

Results 7 issues of Mamert

## Expected Behavior I/O Operations do not block the UI Thread ## Actual Behavior Writing to file blocks UI ## Steps to Reproduce the Problem 1. Run app 2. Click...

When I create and receive on a bus, it works fine: ```bus = can.interface.Bus(bustype='vector', app_name='CANoe', channel=0, bitrate=500000)``` or ```bus = can.interface.Bus(bustype='vector', serial=HW_SN, channel=2, bitrate=500000) # HW_SN defined elsewhere``` However, the...

backend:vector

See https://github.com/richClubb/python-uds/issues/52

"pending" responses are silently ignored. I have a branch which adds a callback triggered whenever they're received: https://github.com/mamert/python-uds/tree/callback_for_0x78_pending e.g. : ``` def samplePendingCallback(msg): print(f"0x78 Pending received while waiting for response...

SIGINT is n/a on Windows, with no easy replacement, hence the added condition

An attempt to install the stable version with pip install mptools gives "ERROR: No matching distribution found for mptools" https://pypi.org/project/mptools/ gives 404 System: Win10, Python 3.6.2, pip 20.3 and 20.2.2...

"io.analogRead(pin); - Returns analog read value as int. Must call slaves digital pin number not its analog pin. So use 14 instead of A0." I don't understand this, isn't A0...