-
Notifications
You must be signed in to change notification settings - Fork 418
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
CAN FD decoder #109
Comments
+1 |
4 similar comments
+1 |
👍 |
+1 |
+1 |
我根据Can的写了一个CanFD的。 |
CAN-FD is more and more common nowadays. I'd like to use DSView to debug my CAN-FD project. It would be great to have CAN-FD decoder in DSView. |
I've integrated some of I've just opened a PR, if you want to test the new decoder, you can clone from my fork https://github.com/abougouffa/DSView/tree/feat/decoders |
I've cloned your fork and tried it, but there's an error: I've also checked the latest version of ".../libsigrokdecode4DSL/decoders/can/pd.py" on sigrok web but the file has the same content (except one line at start in comment with copyright) and it produces the same error. Thanks anyway! |
@wdim0 You can try to replace these lines: With: if (self.matched & (0b1 << 1)):
self.dom_edge_seen()
if (self.matched & (0b1 << 0)):
self.handle_bit(can_rx) It is the |
@abougouffa |
Hi, I am new here. I need to decode CAN-FD data. Critical stage of the proejct. |
Hello @RoopaPalyegar AFAK, CAN-FD is supported in the last 1.3.0 version. This hack was proposed for an older version. EDIT: It seems that you are using PulseView! This discussion is intended for DSView. |
I really need 'CAN FD' decoder.
Could you please support it.
The text was updated successfully, but these errors were encountered: