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
diff options
context:
space:
mode:
Diffstat (limited to 'lib/efm32/common/timer_common.c')
-rw-r--r--lib/efm32/common/timer_common.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/lib/efm32/common/timer_common.c b/lib/efm32/common/timer_common.c
index 22664954..8f82fcfe 100644
--- a/lib/efm32/common/timer_common.c
+++ b/lib/efm32/common/timer_common.c
@@ -1,3 +1,6 @@
+/** @addtogroup timer_file TIMER peripheral API
+ * @ingroup peripheral_apis
+ */
/*
* This file is part of the libopencm3 project.
*
@@ -19,6 +22,8 @@
#include <libopencm3/efm32/timer.h>
+/**@{*/
+
#define HAS_DEAD_TIME_INSERTION(timer) (timer == TIMER0)
/**
@@ -60,3 +65,5 @@ void timer_set_top(uint32_t timer, uint32_t top)
{
TIMER_TOP(timer) = top;
}
+
+/**@}*/ \ No newline at end of file