|
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 |
Answered by
masoomk87
Jan 31, 2023
Replies: 2 comments 2 replies
|
Can you share the file? |
1 reply
|
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 |
1 reply
Answer selected by
masoomk87
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment

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