F4 dma buffer should not reside in CCM

This commit is contained in:
jflyper 2018-06-17 22:12:06 +09:00
parent 2fe9d79903
commit c2a37262a0
1 changed files with 4 additions and 1 deletions

View File

@ -44,9 +44,12 @@
#if defined(STM32F1) || defined(STM32F3)
uint8_t ledStripDMABuffer[WS2811_DMA_BUFFER_SIZE];
#else
#elif defined(STM32F7)
FAST_RAM_ZERO_INIT uint32_t ledStripDMABuffer[WS2811_DMA_BUFFER_SIZE];
#else
uint32_t ledStripDMABuffer[WS2811_DMA_BUFFER_SIZE];
#endif
volatile uint8_t ws2811LedDataTransferInProgress = 0;
uint16_t BIT_COMPARE_1 = 0;