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:
authorKarl Palsson <karlp@etactica.com>2019-06-25 15:52:58 +0300
committerKarl Palsson <karlp@etactica.com>2019-06-26 00:15:19 +0300
commitf63145db073e2d95589a1c574824fbfd631e1408 (patch)
treeb83b5d0bbee175393d59fd176b592cbce812f911
parent1f359e0cb803c7c1cd6591cbe43685ba4ee521c7 (diff)
doc: stm32f7: rcc: add missing top level groups
-rw-r--r--include/libopencm3/stm32/f7/rcc.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/include/libopencm3/stm32/f7/rcc.h b/include/libopencm3/stm32/f7/rcc.h
index a3bb8e30..20ed3a5d 100644
--- a/include/libopencm3/stm32/f7/rcc.h
+++ b/include/libopencm3/stm32/f7/rcc.h
@@ -38,6 +38,8 @@
#include <libopencm3/stm32/f7/pwr.h>
+/**@{*/
+
/* --- RCC registers ------------------------------------------------------- */
#define RCC_CR MMIO32(RCC_BASE + 0x00)
@@ -958,4 +960,6 @@ void rcc_clock_setup_hse(const struct rcc_clock_scale *clock, uint32_t hse_mhz);
void rcc_clock_setup_hsi(const struct rcc_clock_scale *clock);
END_DECLS
+/**@}*/
+
#endif