-
Hi I have been trying to use python-can library to read Vector logged binary logging files (.blf) saved on my disk. I face a strange issue
Does anyone knows what could be going wrong ? I am using the CANALYZER to log the multiple CAN channels (6 to be precise) and make a .blf file out of it |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 2 replies
-
Can you share the file? |
Beta Was this translation helpful? Give feedback.
-
I found that in the CAN blf reader module - https://python-can.readthedocs.io/en/master/_modules/can/io/blf.html, the can arbitration ID is define below Implementing the same in the code solved the issue. I am not sure why the 0x1FFFFFFF, are AND with CAN arbitration ID |
Beta Was this translation helpful? Give feedback.
I found that in the CAN blf reader module - https://python-can.readthedocs.io/en/master/_modules/can/io/blf.html, the can arbitration ID is define below
Implementing the same in the code solved the issue. I am not sure why the 0x1FFFFFFF, are AND with CAN arbitration ID