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.
1 parent 6a3da0f commit f11a41fCopy full SHA for f11a41f
can/interfaces/ics_neovi/neovi_bus.py
@@ -364,6 +364,9 @@ def _ics_msg_to_message(self, ics_msg):
364
is_remote_frame=bool(
365
ics_msg.StatusBitField & ics.SPY_STATUS_REMOTE_FRAME
366
),
367
+ is_error_frame=bool(
368
+ ics_msg.StatusBitField2 & ics.SPY_STATUS2_ERROR_FRAME
369
+ ),
370
error_state_indicator=bool(
371
ics_msg.StatusBitField3 & ics.SPY_STATUS3_CANFD_ESI
372
@@ -384,6 +387,9 @@ def _ics_msg_to_message(self, ics_msg):
384
387
385
388
386
389
390
391
392
393
channel=ics_msg.NetworkID,
394
)
395
0 commit comments