Question
STM32CubeMX 5.0.0 with STM32F413VGTx does not allow configuring Quad SPI DMA
Hello,
I'm trying to use the Quad SPI peripheral with DMA. In the DMA tab it does not allow me to click the "Increment Address" on the Memory section.
Worse yet, anything I do in that tab is ignored. I modified every single thing possible and the output still looks like this:
/**
* Enable DMA controller clock
*/
static void MX_DMA_Init(void)
{
/* DMA controller clock enable */
__HAL_RCC_DMA2_CLK_ENABLE();
/* DMA interrupt init */
/* DMA2_Stream7_IRQn interrupt configuration */
HAL_NVIC_SetPriority(DMA2_Stream7_IRQn, 0, 0);
HAL_NVIC_EnableIRQ(DMA2_Stream7_IRQn);
}Thoughts or workarounds?