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-12 00:26:12 +0300
committerKarl Palsson <karlp@tweak.net.au>2019-06-13 02:06:22 +0300
commit867bd164eb70dfe838282933ea21ca6de786059f (patch)
tree297a7f6f2afcd76a0ccada59b30a2811f86010c9 /include/libopencm3/stm32
parent9a53dc3a897a298217308e71455b460f55a9d9ee (diff)
doc:stm32: usart: fix grouping and heirarchy of base addrs
They were always landing on the top level, or not even present.
Diffstat (limited to 'include/libopencm3/stm32')
-rw-r--r--include/libopencm3/stm32/common/usart_common_f124.h1
-rw-r--r--include/libopencm3/stm32/common/usart_common_f24.h5
-rw-r--r--include/libopencm3/stm32/f0/usart.h9
-rw-r--r--include/libopencm3/stm32/f3/usart.h4
-rw-r--r--include/libopencm3/stm32/f7/usart.h4
-rw-r--r--include/libopencm3/stm32/l0/usart.h4
-rw-r--r--include/libopencm3/stm32/l4/usart.h1
7 files changed, 23 insertions, 5 deletions
diff --git a/include/libopencm3/stm32/common/usart_common_f124.h b/include/libopencm3/stm32/common/usart_common_f124.h
index 41ce2999..cd5c7122 100644
--- a/include/libopencm3/stm32/common/usart_common_f124.h
+++ b/include/libopencm3/stm32/common/usart_common_f124.h
@@ -39,7 +39,6 @@ specific memorymap.h header before including this header file.*/
/** @defgroup usart_reg_base USART register base addresses
- * @ingroup STM32F_usart_defines
* Holds all the U(S)ART peripherals supported.
* @{
*/
diff --git a/include/libopencm3/stm32/common/usart_common_f24.h b/include/libopencm3/stm32/common/usart_common_f24.h
index e8d9f7f0..9edb640b 100644
--- a/include/libopencm3/stm32/common/usart_common_f24.h
+++ b/include/libopencm3/stm32/common/usart_common_f24.h
@@ -38,9 +38,14 @@ specific memorymap.h header before including this header file.*/
/* --- Convenience macros -------------------------------------------------- */
+/** @addtogroup usart_reg_base USART register base addresses
+ * Holds all the U(S)ART peripherals supported.
+ * @{
+ */
#define USART6 USART6_BASE
#define UART7 UART7_BASE
#define UART8 UART8_BASE
+/**@}*/
/* --- USART registers ----------------------------------------------------- */
diff --git a/include/libopencm3/stm32/f0/usart.h b/include/libopencm3/stm32/f0/usart.h
index 5a51a46b..869f4843 100644
--- a/include/libopencm3/stm32/f0/usart.h
+++ b/include/libopencm3/stm32/f0/usart.h
@@ -34,10 +34,16 @@
#include <libopencm3/stm32/common/usart_common_all.h>
#include <libopencm3/stm32/common/usart_common_v2.h>
+/**@{*/
+
/*****************************************************************************/
/* Module definitions */
/*****************************************************************************/
+/** @defgroup usart_reg_base USART register base addresses
+ * Holds all the U(S)ART peripherals supported.
+ * @{
+ */
#define USART1 USART1_BASE
#define USART2 USART2_BASE
#define USART3 USART3_BASE
@@ -46,6 +52,7 @@
#define USART6 USART6_BASE
#define USART7 USART7_BASE
#define USART8 USART8_BASE
+/**@}*/
/*****************************************************************************/
/* Register values */
@@ -59,5 +66,7 @@ BEGIN_DECLS
END_DECLS
+/**@}*/
+
#endif
diff --git a/include/libopencm3/stm32/f3/usart.h b/include/libopencm3/stm32/f3/usart.h
index dc180950..860eba09 100644
--- a/include/libopencm3/stm32/f3/usart.h
+++ b/include/libopencm3/stm32/f3/usart.h
@@ -34,9 +34,9 @@
#include <libopencm3/stm32/common/usart_common_all.h>
#include <libopencm3/stm32/common/usart_common_v2.h>
+/**@{*/
/** @defgroup usart_reg_base USART register base addresses
- * @ingroup STM32F_usart_defines
* Holds all the U(S)ART peripherals supported.
* @{
*/
@@ -51,5 +51,7 @@ BEGIN_DECLS
END_DECLS
+/**@}*/
+
#endif
diff --git a/include/libopencm3/stm32/f7/usart.h b/include/libopencm3/stm32/f7/usart.h
index 9f7fed51..df496a0b 100644
--- a/include/libopencm3/stm32/f7/usart.h
+++ b/include/libopencm3/stm32/f7/usart.h
@@ -34,9 +34,9 @@
#include <libopencm3/stm32/common/usart_common_all.h>
#include <libopencm3/stm32/common/usart_common_v2.h>
+/**@{*/
/** @defgroup usart_reg_base USART register base addresses
- * @ingroup STM32F_usart_defines
* Holds all the U(S)ART peripherals supported.
* @{
*/
@@ -54,5 +54,7 @@ BEGIN_DECLS
END_DECLS
+/**@}*/
+
#endif
diff --git a/include/libopencm3/stm32/l0/usart.h b/include/libopencm3/stm32/l0/usart.h
index d3777707..6ab49067 100644
--- a/include/libopencm3/stm32/l0/usart.h
+++ b/include/libopencm3/stm32/l0/usart.h
@@ -30,8 +30,9 @@
#include <libopencm3/stm32/common/usart_common_all.h>
#include <libopencm3/stm32/common/usart_common_v2.h>
+/**@{*/
+
/** @defgroup usart_reg_base USART register base addresses
- * @ingroup STM32F_usart_defines
* Holds all the U(S)ART peripherals supported.
* @{
*/
@@ -46,4 +47,5 @@ BEGIN_DECLS
END_DECLS
+/**@}*/
#endif
diff --git a/include/libopencm3/stm32/l4/usart.h b/include/libopencm3/stm32/l4/usart.h
index ab7efd63..08d8a86b 100644
--- a/include/libopencm3/stm32/l4/usart.h
+++ b/include/libopencm3/stm32/l4/usart.h
@@ -31,7 +31,6 @@
#include <libopencm3/stm32/common/usart_common_v2.h>
/** @defgroup usart_reg_base USART register base addresses
- * @ingroup STM32F_usart_defines
* Holds all the U(S)ART peripherals supported.
* @{
*/