We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents eea9ef9 + 7819c2d commit 8504a4eCopy full SHA for 8504a4e
can/interfaces/systec/ucanbus.py
@@ -140,7 +140,7 @@ def _recv_internal(self, timeout):
140
141
msg = Message(timestamp=float(message[0].time) / 1000.0,
142
is_remote_frame=bool(message[0].frame_format & MsgFrameFormat.MSG_FF_RTR),
143
- extended_id=bool(message[0].frame_format & MsgFrameFormat.MSG_FF_EXT),
+ is_extended_id=bool(message[0].frame_format & MsgFrameFormat.MSG_FF_EXT),
144
arbitration_id=message[0].id,
145
dlc=len(message[0].data),
146
data=message[0].data)
0 commit comments