Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/thirdpin/libopencm3.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorKarl Palsson <karlp@tweak.net.au>2019-06-22 04:03:29 +0300
committerKarl Palsson <karlp@tweak.net.au>2019-06-22 04:38:20 +0300
commitc8b8285446f56784b89832a2319726a5cffbb2f8 (patch)
tree84d201ed6393c10aeb2c0579006b1ec1346f4b67 /lib
parent35657bdb614a4e78c3de9e434c9ac2f47ad50855 (diff)
doc: efm32: dac: enable peripheral_apis documentation
Diffstat (limited to 'lib')
-rw-r--r--lib/efm32/common/dac_common.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/lib/efm32/common/dac_common.c b/lib/efm32/common/dac_common.c
index 4d5c1036..4d982401 100644
--- a/lib/efm32/common/dac_common.c
+++ b/lib/efm32/common/dac_common.c
@@ -1,3 +1,6 @@
+/** @addtogroup dac_file DAC peripheral API
+ * @ingroup peripheral_apis
+ */
/*
* This file is part of the libopencm3 project.
*
@@ -22,6 +25,8 @@
#include <libopencm3/efm32/dac.h>
+/**@{*/
+
/**
* Set DAC refresh cycle
* @param[in] dac DAC (use DACx)
@@ -166,3 +171,5 @@ void dac_disable_channel(uint32_t dac, enum dac_ch ch)
{
DAC_CHx_CTRL(dac, ch) &= ~DAC_CH_CTRL_REFREN;
}
+
+/**@}*/ \ No newline at end of file