Resolved! HAL SPI library: Does Master's single call to HAL_SPI_Transmit() always trigger Slave's both HAL_SPI_RxCpltCallback() and also HAL_SPI_TxCpltCallback() ?
I am coding STM32H743 MCU with CubeMX generated library.I have 1 SPI Master and 1 Slave. Both configured for a full SPI with both lines of Tx and Rx.Master is calling blocking HAL_SPI_Transmit() or HAL_SPI_Receive() but never simultaneous HAL_SPI_Tra...