diff options
author | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2011-09-25 09:31:19 +0000 |
---|---|---|
committer | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2011-09-25 09:31:19 +0000 |
commit | 00278617267aba8d6483bc0cc1290d771b6c2f93 (patch) | |
tree | 3caad87e2e21cb093357d6d649227aef6249b85f /os/hal/platforms/STM32/DMAv1 | |
parent | 81d6a0d4b67af3260dc5367314510187781640f2 (diff) | |
download | ChibiOS-00278617267aba8d6483bc0cc1290d771b6c2f93.tar.gz ChibiOS-00278617267aba8d6483bc0cc1290d771b6c2f93.tar.bz2 ChibiOS-00278617267aba8d6483bc0cc1290d771b6c2f93.zip |
Documentation related fixes.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@3403 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'os/hal/platforms/STM32/DMAv1')
-rw-r--r-- | os/hal/platforms/STM32/DMAv1/stm32_dma.c | 1 | ||||
-rw-r--r-- | os/hal/platforms/STM32/DMAv1/stm32_dma.h | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/os/hal/platforms/STM32/DMAv1/stm32_dma.c b/os/hal/platforms/STM32/DMAv1/stm32_dma.c index 29ee02360..3fb1b2dc6 100644 --- a/os/hal/platforms/STM32/DMAv1/stm32_dma.c +++ b/os/hal/platforms/STM32/DMAv1/stm32_dma.c @@ -411,6 +411,7 @@ void dmaInit(void) { * @note This function can be invoked in both ISR or thread context.
*
* @param[in] dmastp pointer to a stm32_dma_stream_t structure
+ * @param[in] priority IRQ priority mask for the DMA stream
* @param[in] func handling function pointer, can be @p NULL
* @param[in] param a parameter to be passed to the handling function
* @return The operation status.
diff --git a/os/hal/platforms/STM32/DMAv1/stm32_dma.h b/os/hal/platforms/STM32/DMAv1/stm32_dma.h index ca9c429f7..22be4a67e 100644 --- a/os/hal/platforms/STM32/DMAv1/stm32_dma.h +++ b/os/hal/platforms/STM32/DMAv1/stm32_dma.h @@ -217,7 +217,7 @@ typedef void (*stm32_dmaisr_t)(void *p, uint32_t flags); * @brief DMA stream enable.
* @note This function can be invoked in both ISR or thread context.
*
- * @param[in] dmachp pointer to a stm32_dma_stream_t structure
+ * @param[in] dmastp pointer to a stm32_dma_stream_t structure
*
* @special
*/
|