We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
How can I configure the code so that I can use cc. py on a bus that only supports CANFD/CANFD acceleration
The text was updated successfully, but these errors were encountered:
Please refer to the configuration instructions for python-can: https://python-can.readthedocs.io/en/stable/configuration.html
I suspect it might be as easy as adding an fd = true entry to your ~/.canrc file. If this is not enough you might want to look into setting the is_fd parameter to true in calls to underlying python-can functions (such as the wrapper in CanActions.send, see https://github.com/CaringCaribou/caringcaribou/blob/master/caringcaribou/utils/can_actions.py#L107)
fd = true
~/.canrc
is_fd
true
If you get this working, please share your method here to help others who are in a similar situation 🙂
Sorry, something went wrong.
when configuring "can.Bus()", add "fd=True". And, When constructing "can.Message", set "is_fd" to "True".
No branches or pull requests
How can I configure the code so that I can use cc. py on a bus that only supports CANFD/CANFD acceleration
The text was updated successfully, but these errors were encountered: