Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/thirdpin/libopencm3.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGuillaume Revaillot <revaillot@archos.com>2019-06-11 17:59:57 +0300
committerKarl Palsson <karlp@tweak.net.au>2019-06-17 14:44:44 +0300
commit7d344b187dae32c456b81f6e8b370ac0fffcef4e (patch)
tree114a65c5b0a4186f44eb11d178f0fe2b824a07a2 /include/libopencm3/stm32
parenteb0bc099f435b51e50f7a487b565cacdd0f1204f (diff)
stm32: dma: add dma_set_channel_request to ease dma cselr usage.
Diffstat (limited to 'include/libopencm3/stm32')
-rw-r--r--include/libopencm3/stm32/common/dma_common_csel.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/include/libopencm3/stm32/common/dma_common_csel.h b/include/libopencm3/stm32/common/dma_common_csel.h
index 04d93caf..755bb1df 100644
--- a/include/libopencm3/stm32/common/dma_common_csel.h
+++ b/include/libopencm3/stm32/common/dma_common_csel.h
@@ -43,6 +43,8 @@ specific memorymap.h header before including this header file.*/
BEGIN_DECLS
+void dma_set_channel_request(uint32_t dma, uint8_t channel, uint8_t request);
+
END_DECLS
/** @cond */