Question
STM32 SPI Configuration Issue on STM32F765ZGT – HAL_BUSY Error
Hello Everyone,
I am currently configuring SPI on the STM32F765ZGT board and using both blocking (polling) and interrupt-based methods for SPI transmission and reception. However, I am encountering an issue where the following condition evaluates to true, resulting in a HAL_BUSY error:
if (hspi->State != HAL_SPI_STATE_READY)
{
errorcode = HAL_BUSY;
goto error;
}I would appreciate any insights on what might be causing this issue and potential solutions to resolve it.
Thank you in advance!
