Question
DMA_FLAG_FEIF0 value incorrect in stm32f4xx_dma.h?
Posted on July 12, 2014 at 15:59
While trying to track down my DMA2 stalling problem, I've tried to enable interrupts for things other than completion.
As a result, I notice that these two definitions:</p>
#define
</b>
DMA_FLAG_FEIF0 ((uint32_t)0x10800001)
#define
DMA_FLAG_DMEIF0 ((uint32_t)0x10800004)
set a bit that's listed as reserved in LISR for DMA2.
Surely the 8's are erroneous, and should be zeroes, looking at the documentation of the register.
#define
DMA_FLAG_FEIF0 ((uint32_t)0x10000001)