git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@8396 35acf78f-673a-0410-8e92-d51de3d6d3f4

This commit is contained in:
Giovanni Di Sirio 2015-10-28 08:23:59 +00:00
parent 8b7474c1fc
commit 7964a10f91
1 changed files with 3 additions and 3 deletions

View File

@ -199,13 +199,13 @@ OSAL_IRQ_HANDLER(STM32_DMA12_CH4567_CH345_HANDLER) {
dmaServeInterrupt(STM32_DMA1_STREAM7);
/* Check on channel 3 of DMA2.*/
dmaServeInterrupt(STM32_DMA1_STREAM3);
dmaServeInterrupt(STM32_DMA2_STREAM3);
/* Check on channel 4 of DMA2.*/
dmaServeInterrupt(STM32_DMA1_STREAM4);
dmaServeInterrupt(STM32_DMA2_STREAM4);
/* Check on channel 5 of DMA2.*/
dmaServeInterrupt(STM32_DMA1_STREAM5);
dmaServeInterrupt(STM32_DMA2_STREAM5);
OSAL_IRQ_EPILOGUE();
}