I need to initialize the board to run at 1m instead of 500kbps
this is the code for using 500:
if(Canbus.init(CANSPEED_500)) //Initialise MCP2515 CAN controller at the specified speed
how do i set it to 1m? (100000)
thanks
I need to initialize the board to run at 1m instead of 500kbps
this is the code for using 500:
if(Canbus.init(CANSPEED_500)) //Initialise MCP2515 CAN controller at the specified speed
how do i set it to 1m? (100000)
thanks
It doesn’t look like the library supports 1mbps, but you might find another library that does, or you could write your own.
This library might work for you.
that library worked perfect at 1M, thanks very much for that!