Home | Projects | Notes > MCU Peripheral Drivers > SPI Application 4: Master Rx (Interrupt) (spi_04_master_rx_interrupt)

SPI Application 4: Master-Slave Rx (Interrupt) (spi_04_master_rx_interrupt)

 

Requirements

Parts Needed

  1. Arduino board

  2. STM32 board

  3. Logic level converter

  4. Breadboard and jumper wires

STM32 Board and Arduino Board Communication Interfaces

 

spi-application-4-communication-interfaces

 

STM32 Board and Arduino Board Voltage Levels

 

spi-application-2-stm32-arduino-voltage-levels

 

 

Setup

1. Find out the GPIO pins that can be used for SPI2 communication

2. Connect STM32 Discovery board with Arduino Uno board SPI pins

 

spi-application-4-hardware-setup

 

3. Power Arduino board and upload SPI slave sketch to Arduino

 

Code

spi_04_master_rx_interrupt.c

Path: Project/Src/

The master's clock frequency has been adjusted from 2 MHz (prescalar = 8) to 500 KHz (prescalar = 32) to be compatible with the baudrate (1200) of the slave.

FYI using 500 KHz for the master and 9600 bps for slave also worked.

 

Arduino Sketch (003SPISlaveUartReadOverSPI.ino)

Original baudrate (9600) has been changed to 1200 since the communication didn't work with the original baudrate. (In the STM32 application, the master's clock frequency has been adjusted from 2 MHz to 500 KHz accordingly.)

FYI using 500 KHz for the master and 9600 bps for slave also worked.

 

Testing

Debugging required! Master and slave are able to communicate with each other but some noise kicks in as shown in the snapshot below.

 

spi-application-4-testing-issue