DMA NVIC priority increase.

This commit is contained in:
StefansE
2026-03-29 13:39:14 +02:00
parent b5000adf0e
commit cd2662eceb
7 changed files with 19 additions and 24 deletions

View File

@@ -44,7 +44,7 @@ void MX_DMA_Init(void)
/* DMA interrupt init */
/* DMA1_Channel5_IRQn interrupt configuration */
HAL_NVIC_SetPriority(DMA1_Channel5_IRQn, 0, 0);
HAL_NVIC_SetPriority(DMA1_Channel5_IRQn, 6, 0);
HAL_NVIC_EnableIRQ(DMA1_Channel5_IRQn);
}