-
Notifications
You must be signed in to change notification settings - Fork 114
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
GMLAN 33.3kbps ? #11
Comments
You can modify that line https://github.com/autowp/arduino-canhacker/blob/master/CanHacker.cpp#L62 to MCP2515::ERROR error = mcp2515->setBitrate(CAN_50KBPS, canClock); to always connect at 50kbps |
But I need 33.3kbps. if I change that line to "50kbps" will it connect to GMLAN with 33.3kbps? thanks for quick reply. |
Select any of available bitrates from |
Big thanks for your answers, i need to ask one last thing; will choosing CAN_33KBPS connect to GMLAN or do i need to replace every 33kbps to 33k3bps ? |
There naming problem. In real are same. For working with SWCAN (GMLAN) 33.3kbps modify line 62 as: MCP2515::ERROR error = mcp2515->setBitrate(CAN_33KBPS, MCP_16MHZ); |
I tried to connect to GMLAN (swcan 33.3kbps) but I couldn't. In CANHACKER's settings window there are 10kb 50kb etc but there is no 33.3kbps.
It wants btr0 and btr1 values.
How can I connect to GMLAN with 33.3kbps speed?
The text was updated successfully, but these errors were encountered: