7. CAN Bus Communication

7.1. Experimental purpose

Using STM32 CAN communication, using loop mode, key control to send CAN data, interrupt receiving CAN data and print out through serial assistant.

7.2. Configure pin information

Since each new project needs configuration information, it is troublesome. Fortunately, STM32CubeIDE provides the function of importing.IOC file, which can help us save time.

  1. Import ioc file from Serial project and name it CAN.

Find CAN in Connectivity and check Activated to enable the CAN peripheral.

image-20220326121240215

  1. According to the schematic diagram, the pins of the CAN bus connection are PB8 and PB9, while the default CAN bus pins are PA11 and PA12, so it is necessary to manually modify the pins of the CAN bus to PB8 and PB9.

image-20220326122605409

image-20220326122759412

image-20220326122910978

  1. Set the parameters of the CAN peripheral. Here, we set the baud rate to 1000kbps and the mode to Loopback.

image-20220326121651092

Since this is only used to test communication, select Loopback mode (data collection). If you need to connect a third-party CAN device, select the Normal mode (data receiving/sending is independent).

image-20220326121936036

 

  1. Turn on the CAN RX0 interrupt in the interrupt setting. If you do not turn on the interrupt, you cannot receive data.

image-20220326122355699

7.3. Analysis of experimental flow chart

image-20220326142231567

7.4. Core code interpretation

  1. Create the buzzer driver library bsp_can.h and bsp_can.c files in the BSP. Add the following to bsp_can.h:

image-20220326140058393

  1. Add the following content to bsp_can.c:

Can_Init(): initializes CAN peripherals, sets CAN receiving filters, and enables CAN bus communication.

image-20220326140418820

  1. In order to test sending data, a new Can_Test_Send() function is created to send data through CAN and print it to the serial assistant. If you need to modify the sent data, just modify the TxData array before sending.

image-20220326140721179

4.CAN receive interrupt callback function, and print out the received CAN data through serial port. This function name cannot be changed, otherwise this function cannot be called.

image-20220326140956603

  1. In BSP initialization, call the Can_Init() function to initialize the CAN peripheral.

image-20220326141309119

  1. Add the function of sending CAN data after the key is pressed.

image-20220326141424603

7.5. Hardware connection

Since the loop back mode is used, the CAN interface can not be connected to external devices.

image-20241210185414297

7.6. Experimental effect

After the program is burned, the LED light flashes every 200 milliseconds, the expansion board is connected to the computer through the micro-USB data cable, and the serial port assistant is opened (specific parameters are shown below). Every time you press the key, the buzzer will ring for 50 milliseconds, and you CAN see that the serial port assistant will display the data sent by CAN and the data received by CAN.

image-20241210185448737