2016-07-31 12:34 PM
2016-08-22 04:34 AM
Hi,
You can start from an example within the firmware package,from this path: STM32Cube_FW_F1_V1.4.0\Projects\STM32VL-Discovery\Examples\SPI\SPI_FullDuplex_ComIT This example shows how to ensure SPI data buffer transmission/reception between two boards by using an interrupt. It is not necessary putting:__HAL_SPI_ENABLE(&hspi1);
__HAL_SPI_ENABLE(&hspi2);
as it is already done by MX_SPIx_Init.
Regards