diff options
author | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2010-10-08 18:16:38 +0000 |
---|---|---|
committer | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2010-10-08 18:16:38 +0000 |
commit | f407e4a84fcf2cf3bb003ed36f80ec136f8683c2 (patch) | |
tree | 4320f476744a99f1814e4ad5007e8fc87e8467ff /os/hal/platforms/STM32/stm32_dma.c | |
parent | 38cc48d575a6232cfd440d97711f89f5f531422d (diff) | |
download | ChibiOS-f407e4a84fcf2cf3bb003ed36f80ec136f8683c2.tar.gz ChibiOS-f407e4a84fcf2cf3bb003ed36f80ec136f8683c2.tar.bz2 ChibiOS-f407e4a84fcf2cf3bb003ed36f80ec136f8683c2.zip |
HAL improvements, mailboxes macro name changed.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@2238 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'os/hal/platforms/STM32/stm32_dma.c')
-rw-r--r-- | os/hal/platforms/STM32/stm32_dma.c | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/os/hal/platforms/STM32/stm32_dma.c b/os/hal/platforms/STM32/stm32_dma.c index 995e33a12..bcdcf0fb7 100644 --- a/os/hal/platforms/STM32/stm32_dma.c +++ b/os/hal/platforms/STM32/stm32_dma.c @@ -18,8 +18,9 @@ */
/**
- * @file stm32_dma.c
- * @brief STM32 DMA helper driver code.
+ * @file stm32_dma.c
+ * @brief STM32 DMA helper driver code.
+ *
* @addtogroup STM32_DMA
* @{
*/
@@ -53,7 +54,7 @@ static cnt_t dmacnt2; /*===========================================================================*/
/**
- * @brief STM32 DMA helper initialization.
+ * @brief STM32 DMA helper initialization.
*
* @init
*/
@@ -73,9 +74,9 @@ void dmaInit(void) { }
/**
- * @brief Enables the specified DMA controller clock.
+ * @brief Enables the specified DMA controller clock.
*
- * @param[in] dma the DMA controller id
+ * @param[in] dma the DMA controller id
*
* @api
*/
@@ -102,7 +103,7 @@ void dmaEnable(uint32_t dma) { /**
* @brief Disables the specified DMA controller clock.
*
- * @param[in] dma the DMA controller id
+ * @param[in] dma the DMA controller id
*
* @api
*/
|