The CAN module on-board the phyCORE-AM65x SOM supports both the classical CAN and Full CAN FD (CAN with Flexible Data-Rate) protocols. The development kit breaks out the MCAN0 (X_MCU_MCAN0) interface to the X15 header for general use. Depending on the muxing options, a second CAN interface (CAN 2.0B and CAN FD) can be made available through the expansion port X3.
This guide will walk through the basic usage of the CAN interface by transferring data to and from a host PC. In order to follow this guide you will need a CAN-USB adapter cable, the necessary driver for this adapter, and software for your host machine to display the received messages. This guide was tested and written using the following product and software:
See the end of this guide for further information regarding advanced CAN configurations.
Step-by-step guide
Setup the CAN Interface
- Connect the D-sub 9 ribbon cable to the X15 connector (red line on the cable indicates Pin 1)
- Connect the PCAN-USB adapter between the host PC (USB port) and the CAN0 interface (X15) on the development kit.
Pin 1 location on phyCORE-AM65x development kit
Set up the Host PC with PCAN-View
Open PCAN-View on your host PC and select the device from the available hardware. Set the Bit rate field to 1 MBit/s and click OK.
In the phyCORE-AM65x Linux console, use the following commands to set up the CAN interface and configure the bit rate. For this example 1 MBit/s is used.
Target (Linux)ip link set can0 down ip link set can0 up type can bitrate 1000000 ip link set can0 up
Send CAN messages
In this example you will test data transfer from the phyCORE-AM65x kit to the host PC.
Make sure PCAN View is open on your host PC
Enter the following on the phyCORE-AM65x console to send data on the CAN bus.
Target (Linux)cansend can0 000#DE.AD.BE.EF.CA.FE.BA.BE
- In PCAN-View verify that the data is correct in the "Receive" window.
Receive CAN messages
In this example you will test data travelling in the opposite direction - from the host PC to the phyCORE-AM65x kit.
Enter the following command on the phyCORE-AM65x console to put the CAN interface into listening mode:
Target (Linux)candump can0
- On your host PC in PCAN-View, create a new transmit message.
- Enter DEADBEEFCAFEBABE as the data (hex).
- Select the message. You can press the space-bar a few times to send the message more than once.
On the phyCORE-AM65x console you should see that the message has been received.
Expected Outputroot@am65xx-phycore-kit:~# candump can0 can0 000 [8] DE AD BE ED CA FE BA BE
- To exit listening mode on the phyCORE-AM65x enter Ctrl + C to stop candump.