Hi,
I'm using the STM32F103ZET6 uC on the MCBSTM32E board. Our company is developing a PCB with two of those uC on it communicating with each other through SPI. As the PCB is not developed yet I would like to test these inter-SPI communication by interconnection SPI1 and SPI2 on the MCBSTM32E board. I connected SPI1 to SPI2 one on one meaning with their SCK/NSS/MOSI/MISO signals. So for example SPI1.SCK is connected to SPI2.SCK, e.t.c.. I use swapping from GPIO to AFN (Alternate function) for controlling two on the fly changing configurations: 1: SPI1-master/SPI2-slave (with DMA) 2: SPI2-master/SPI1-slave (with DMA) From SPI1 to SPI2 it works fine. From SPI2 to SPI1 the receiving SPI1 only generates SPI1-RXNE (rx buffer not empty) interrupts for the first 4 bytes and then simply does not occur anymore although receiving SCK and MOSI data is still active and DMA buffer size is set to 100. SPI2 generates SPI2-RXNE interrupts for all received (26) bytes.
I tried and studied lots of hours but could not find the cause. The Errata pdf mentions some issues with SPI's but not this kind.
Anybody any idea?
Thanks
Henk
do you set the master to read before you set it to write?
do not know your code but, write before read could lead to occasionally missed interrupts.
Erik
But the master will both read and write so should happen at same time - so same initialization.
But the slave needs to be fully initialized before the master starts the transfer.