From 4100cbc9c04ade8983bcea54a9105b595503649f Mon Sep 17 00:00:00 2001 From: George Oikonomou Date: Sat, 14 Feb 2015 01:18:51 +0100 Subject: [PATCH] Fix doxygen warning in the CC2538 uDMA driver's header --- cpu/cc2538/dev/udma.h | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/cpu/cc2538/dev/udma.h b/cpu/cc2538/dev/udma.h index a6ddfc199..79cd58c20 100644 --- a/cpu/cc2538/dev/udma.h +++ b/cpu/cc2538/dev/udma.h @@ -560,12 +560,13 @@ void udma_init(void); /** * \brief Sets the channels source address * \param channel The channel as a value in [0 , UDMA_CONF_MAX_CHANNEL] - * \param + * \param src_end The source's end address */ void udma_set_channel_src(uint8_t channel, uint32_t src_end); /** - * \brief + * \brief Sets the channel's destination address + * \param dst_end The destination's end address * \param channel The channel as a value in [0 , UDMA_CONF_MAX_CHANNEL] */ void udma_set_channel_dst(uint8_t channel, uint32_t dst_end);