2

Has anyone tried this CAN board? It uses the Microchip MCP2515, but I don't see any docs or sample apps.

Qunqi MCP2515 Controller Bus Module TJA1050 Receiver SPI Protocol for Arduino SCM 51

also here:

D33 MCP2515 CAN Bus Module TJA1050 Receiver SPI Protocol

I've also been a board called NiRen that appears to be identical to these.

Shade
  • 51
  • 1
  • 4

1 Answers1

1

Steps you can try: Connections:

  • 5V--VCC
  • GND--GND
  • GPIO10--MOSI (SI)
  • GPIO9---MISO (SO)
  • GPIO25--INT
  • GPIO11--SCK
  • GPIO8--CS

  • Enable SPI on Raspberry Pi edit "/boot/config.txt" to enable SPI and reboot

  • Time for the connections

  • Check whether all connections done right by using "ifconfig can"

  • You will require some basic installs to start. sudo apt-get install git autoconf libtool

and compile the CAN utils.

For any other reference, check:

http://lnxpps.de/rpie/

If you have a MCP2551 IC board, try this

http://chadgibbons.com/2016/01/08/can-bus-hacking-with-the-arduino-and-raspberry-pi/

onedev
  • 13
  • 2