Posted on July 14, 2016 at 22:41
I'm attempting a fairly standard initialization of the SPI peripheral on an STM32F302, and for some reason whenever I call GPIO_PinAFConfig(GPIOA, GPIO_Pin_15, GPIO_AF_6), the program jumps to the WWDG_IRQHandler...
Posted on May 05, 2016 at 23:59
Hi, I'm trying to get an STM32F0 read incoming data packets as a SPI slave using the DMA. I've been reading the DataExchangeDMA peripheral example code and trying to convert some of it to an interrupt driven model...
Posted on May 06, 2016 at 17:07Thanks so much! I simply commented out all the code relating to SPI interrupts and added DMA_Cmd(DMA1_Channel2, ENABLE); to the end of the DMA interrupt routine, and now everything's working smoothly. I believe I could...