diff options
| author | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2010-10-04 17:16:18 +0000 | 
|---|---|---|
| committer | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2010-10-04 17:16:18 +0000 | 
| commit | 2891f7d645c4be187ac96ee4011207531d25c34a (patch) | |
| tree | ddfb8134c4c918893cb0cb50075bd5be3f4248a9 /os/hal/platforms/STM32/stm32_dma.c | |
| parent | 7f61cb948ccdbd728643e0f174ee87542d9a862d (diff) | |
| download | ChibiOS-2891f7d645c4be187ac96ee4011207531d25c34a.tar.gz ChibiOS-2891f7d645c4be187ac96ee4011207531d25c34a.tar.bz2 ChibiOS-2891f7d645c4be187ac96ee4011207531d25c34a.zip | |
Documentation improvements, fixed a small error in the STM32 serial driver.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@2234 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 | 6 | 
1 files changed, 6 insertions, 0 deletions
| diff --git a/os/hal/platforms/STM32/stm32_dma.c b/os/hal/platforms/STM32/stm32_dma.c index 5a24f45b2..995e33a12 100644 --- a/os/hal/platforms/STM32/stm32_dma.c +++ b/os/hal/platforms/STM32/stm32_dma.c @@ -54,6 +54,8 @@ static cnt_t dmacnt2;  /**
   * @brief STM32 DMA helper initialization.
 + *
 + * @init
   */
  void dmaInit(void) {
    int i;
 @@ -74,6 +76,8 @@ void dmaInit(void) {   * @brief Enables the specified DMA controller clock.
   *
   * @param[in] dma the DMA controller id
 + *
 + * @api
   */
  void dmaEnable(uint32_t dma) {
 @@ -99,6 +103,8 @@ void dmaEnable(uint32_t dma) {   * @brief Disables the specified DMA controller clock.
   *
   * @param[in] dma the DMA controller id
 + *
 + * @api
   */
  void dmaDisable(uint32_t dma) {
 | 
