I am a beginner in raspberry pi and linux. Currently, I am working on implementing a CAN-FD board (click MCP2517FD board with MCP2517FD controller and ATA6563 transceiver) on raspberry pi 3 by using SPI interface. I completed the connection and tested the board following the same steps of implementing CAN (mcp2515) on the raspberry pi:
1.
Code: Select all
sudo apt-get update
sudo apt-get upgrade
sudo rebootCode: Select all
dtparam=spi=on
dtoverlay=mcp2517fd-can0,oscillator=16000000,interrupt=25
dtoverlay=spi-bcm2835-overlayCode: Select all
sudo /sbin/ip link set can0 up type can bitrate 500000I also checked the available interfaces by using "ifconfig -a" and found that there is no CAN interface. So I just want to know, does anyone here have the experience of implementing CAN-FD on the raspberry pi or does anyone here can give me some suggestions?
Thank you.