STM32F7 SPI & DMA: HAL_SPI_TxCpltCallback race condition in HAL Library
My setup:SPI(Tx only) + DMA (not circular) and no FIFONow HAL_SPI_TxCpltCallback() is executed only if the transfer-complete-flag is also set before HAL_DMA_IRQHandler() is handled for "half transfer complete interrupt"Problem is: in HAL_DMA_IRQHandl...