Hello, i try to use the SPI interface on STM32f3 DISCOVERYBOARD. My problem is that my clock toggles, even though the data transfer is complete. The busy flag is not yet reset either. What can that be? Ther is an Osziplot wich shows the Problem
This is my source code for the SPI configuration:static void SPI1_init(){ //GPIOs konfigurieren //PA4 Chip select //PA5 clk //PA6 MISO //PA7 MOSI uint8_t ch; while(SPI1->SR & SPI_SR_FTLVL); // Wait until no more data to transmit while...