Two STM32F407 carry out SPI master-slave communication. Error occurs when the slave receives and sends data.
SPI Master code ------------------------------- u8 Transmit_Buffer[SIZE]; u8 Receive_Buffer[SIZE]; uint16_t timebase_1us = 0; u16 i = 0; u16 a = 0; int main() { delay_init(168); //168MHZ SPI1_Init(); for(a=0;a<1024;a++) { Transmit_B...