Solved
SPI transmit with interrupt not work
Hello to everybody,
I have program for stm32f103 mcu. Now I want to do my SPI transmit routine using interrupt.
Before:
HAL_StatusTypeDef status = HAL_SPI_Transmit(&afe_spi, (uint8_t*) pData, 4,100);Now I tried this (and many variants also):
HAL_StatusTypeDef status = HAL_SPI_Transmit_IT(&afe_spi, (uint8_t *) pData, 4);
while (status != HAL_OK){
status = HAL_SPI_Transmit_IT(&afe_spi, (uint8_t *) pData, 4);
}But data isn't sended. And in debug mode i can see:
My project settings:

Other interrupt also not works.
Best regerds, Egor
