GarethJoshua
GarethJoshua
Python version:3.11.1 python-can version:4.1.0 python-can interface/s (if applicable):gs-usb 0.3.0, pyusb 1.2.1
Re questions : Do you have a code example you could share on how you're setting up the usb2can interface in Python on Windows? Creating can.Bus :- can0 = can.Bus(channel...
I note that in the implementation of gs_usb_frame.py [gs_usb/gs_usb_frame.py at master · jxltom/gs_usb · GitHub](https://github.com/jxltom/gs_usb/blob/master/gs_usb/gs_usb_frame.py) the timestamp is calculated as :- def timestamp(self): return self.timestamp_us / 1000000.0 So presumably the...
The Timestamp property is implemented as follows in gs_usb_frame.py:- @property def timestamp(self): return self.timestamp_us / 1000000.0 As mentioned above :- ‘The timestamp field in a CAN message is a floating...