cancel
Showing results for 
Search instead for 
Did you mean: 

STM32 SPI Configuration Issue on STM32F765ZGT – HAL_BUSY Error

anuj18ap
Visitor

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!

3 REPLIES 3
Bob S
Principal

That piece of code is inside the HAL SPI functions.  We need to see what YOUR code does - how and when it calls the HAL SPI functions. And which call results in the BUSY return.

Is your program using an RTOS (FreeRTOS, ThreadX, etc.)?

In general, BUSY means the HAL SPI code thinks the interface is already doing something.  So (in general) look for an SPI call when the previous IT (interrupt) or DMA based SPI operation is still in progress.

anuj18ap
Visitor

Is your program using an RTOS (FreeRTOS, ThreadX, etc.)?  : No

 

I am printing the state before this condition

printf("SPI State: %d\n", hspi->State);
if (hspi->State != HAL_SPI_STATE_READY)
{
errorcode = HAL_BUSY;
goto error;
}

i am getting
SPI State: 1       (1 means already in ready state)

CTapp.1
Senior

But what did you do before the call to HAL_SPI_Transmit?