aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorThomas Otto2010-03-26 17:36:15 +0100
committerThomas Otto2010-03-26 17:36:15 +0100
commit561ce3780998467c48a3aef30cfe448b3de6c100 (patch)
treee344220d2f98c59b27ea6909766f8dfbfd675844 /include
parent0f710dd8fa1a12150cb17df6f103f8864e576e0d (diff)
Changed address setting in dma.c+h.
Diffstat (limited to 'include')
-rw-r--r--include/libopenstm32/dma.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/libopenstm32/dma.h b/include/libopenstm32/dma.h
index 38d5654..95fc99b 100644
--- a/include/libopenstm32/dma.h
+++ b/include/libopenstm32/dma.h
@@ -715,8 +715,8 @@ void dma_enable_transfer_complete_interrupt(u32 dma, u8 channel);
void dma_disable_transfer_complete_interrupt(u32 dma, u8 channel);
void dma_enable_channel(u32 dma, u8 channel);
void dma_disable_channel(u32 dma, u8 channel);
-void dma_set_peripheral_address(u32 dma, u8 channel, u32 * address);
-void dma_set_memory_address(u32 dma, u8 channel, u32 * address);
+void dma_set_peripheral_address(u32 dma, u8 channel, u32 address);
+void dma_set_memory_address(u32 dma, u8 channel, u32 address);
void dma_set_number_of_data(u32 dma, u8 channel, u16 number);
#endif