Added control on callback calling

git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@10480 35acf78f-673a-0410-8e92-d51de3d6d3f4
This commit is contained in:
edolomb 2017-08-25 08:38:06 +00:00
parent b0bd45756f
commit 78b0e26049
1 changed files with 2 additions and 2 deletions

View File

@ -172,9 +172,9 @@ OSAL_IRQ_HANDLER(dmaHandler) {
}
}
/* Execute callback */
//if (pendingInt && channel->dma_func) {
if (pendingInt && channel->dma_func) {
channel->dma_func(channel->dma_param,cis);
//}
}
}
}
OSAL_IRQ_EPILOGUE();