Resolved! (Solved) Unable to reset SPI busy flag in slave mode by any means
The solution was to hard reset the SPI module using RCC_APB1RSTR register.HAL includes macros for this:__HAL_RCC_SPI2_FORCE_RESET(); __HAL_RCC_SPI2_RELEASE_RESET();With these it completely resets and can be initialized again!I'm using SPI slave mode....