aboutsummaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorPiotr Esden-Tempski2012-11-12 14:11:46 -0800
committerPiotr Esden-Tempski2012-11-12 14:11:46 -0800
commitd64ec3cf58dbd9a5a5ae10063701762b45284531 (patch)
tree32a624ef4619f863b59f785b3195e293dccfbe11 /lib
parent956b1dbce4084e4787189e5f812b90e891ef9b7e (diff)
parent35c0863a75c41f900514bb4dfbc654544723577a (diff)
Merge pull request #62 "Documentation updates for new devices"
Merge remote-tracking branch 'ksarkies/doc'
Diffstat (limited to 'lib')
-rw-r--r--lib/stm32/f1/dma.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/stm32/f1/dma.c b/lib/stm32/f1/dma.c
index c26020a..fa7fb72 100644
--- a/lib/stm32/f1/dma.c
+++ b/lib/stm32/f1/dma.c
@@ -80,7 +80,7 @@ The interrupt flag for the channel is cleared. More than one interrupt for the
same channel may be cleared by using the logical OR of the interrupt flags.
@param[in] dma unsigned int32. DMA controller base address: DMA1 or DMA2
-@param[in] channel unsigned int8. Channel number: @ref dma_st_number
+@param[in] channel unsigned int8. Channel number: @ref dma_ch
@param[in] interrupts unsigned int32. Logical OR of interrupt numbers: @ref dma_if_offset
*/
@@ -97,8 +97,8 @@ void dma_clear_interrupt_flags(u32 dma, u8 channel, u32 interrupts)
The interrupt flag for the channel is returned.
@param[in] dma unsigned int32. DMA controller base address: DMA1 or DMA2
-@param[in] channel unsigned int8. Channel number: @ref dma_st_number
-@param[in] interrupt unsigned int32. Interrupt number: @ref dma_st_number
+@param[in] channel unsigned int8. Channel number: @ref dma_ch
+@param[in] interrupt unsigned int32. Interrupt number: @ref dma_ch
@returns bool interrupt flag is set.
*/