bsps/imxrt: Enable DMA clock

The EDMA is intialized so make sure the the clock is initialized too.

Update #4180
This commit is contained in:
Christian Mauderer
2021-05-12 11:34:52 +02:00
parent 691fec407a
commit 15e26f4d7f

View File

@@ -48,4 +48,7 @@ BSP_START_TEXT_SECTION void bsp_start_hook_1(void)
/* Reduce frequency for I2C */
CLOCK_SetDiv(kCLOCK_Lpi2cDiv, 5);
/* Enable EDMA clock. We initialize the EDMA so we need the clock. */
CLOCK_EnableClock(kCLOCK_Dma);
}