SPI communication failure at high frequicies
Hi,
The SPI communication between an ESP(Master) and the STM(Slave) is failing when i configure the SPI clock at 10MHz.
I have STM32F429ZIT6 DISC1 board and i have used SPI3 as slave, the SPI3 is on the APB1 bus which is configured at 45MHz PCLK.
The communication is well and good at 8MHz SPI_CLK but when i configure it at 10MHz SPI_CLK it is failing, the control is stuck at :
if(HAL_SPI_Receive(&hspi3, buf, sizeof(buf), 0xffff) != HAL_OK){
Error_Handler();
}
I'm unable to find out what may be the issue, as the slave's PCLK is 2xSPI_CLK, it should work right?
