aboutsummaryrefslogtreecommitdiff
path: root/stmhal/dma.c
diff options
context:
space:
mode:
authorDamien George2015-11-24 15:40:59 +0000
committerDamien George2015-11-24 15:44:16 +0000
commit22bd23114af166980bad6ff00caaf97fdb1f2cf4 (patch)
tree4be3618d58fdebc611b95ebbb3de77592eb71ae6 /stmhal/dma.c
parent9936aa3f87046c92ec8721a5f5734612e178e8eb (diff)
stmhal: On SysTick IRQ, only process one DMA channel at a time.
This can be generalised if/when more processing is needed by SysTick. Thanks to @chuckbook for the idea.
Diffstat (limited to 'stmhal/dma.c')
-rw-r--r--stmhal/dma.c10
1 files changed, 6 insertions, 4 deletions
diff --git a/stmhal/dma.c b/stmhal/dma.c
index 7abd521be..2b344141e 100644
--- a/stmhal/dma.c
+++ b/stmhal/dma.c
@@ -220,14 +220,16 @@ void dma_invalidate_channel(DMA_Stream_TypeDef *dma_stream, uint32_t dma_channel
}
}
-// Called from the SysTick handler (once per millisecond)
-void dma_idle_handler() {
+// Called from the SysTick handler
+// We use LSB of tick to select which controller to process
+void dma_idle_handler(int tick) {
static const uint32_t controller_mask[] = {
DMA1_ENABLE_MASK, DMA2_ENABLE_MASK
};
- for (int controller = 0; controller < NCONTROLLERS; controller++) {
+ {
+ int controller = tick & 1;
if (dma_idle.counter[controller] == 0) {
- continue;
+ return;
}
if (++dma_idle.counter[controller] > DMA_IDLE_TICK_MAX) {
if ((dma_enable_mask & controller_mask[controller]) == 0) {