aboutsummaryrefslogtreecommitdiffstats
path: root/os/io/platforms/STM32F103
diff options
context:
space:
mode:
Diffstat (limited to 'os/io/platforms/STM32F103')
-rw-r--r--os/io/platforms/STM32F103/platform.dox18
-rw-r--r--os/io/platforms/STM32F103/serial_lld.c6
-rw-r--r--os/io/platforms/STM32F103/serial_lld.h8
3 files changed, 16 insertions, 16 deletions
diff --git a/os/io/platforms/STM32F103/platform.dox b/os/io/platforms/STM32F103/platform.dox
index b1828425c..6ec9fbe20 100644
--- a/os/io/platforms/STM32F103/platform.dox
+++ b/os/io/platforms/STM32F103/platform.dox
@@ -18,9 +18,9 @@
*/
/**
- * @defgroup STM32F103 STM32F103 Support
- * @brief STM32F103 specific support.
- * @details The STM32F103 support includes:
+ * @defgroup STM32 STM32 Support
+ * @brief STM32 specific support.
+ * @details The STM32 support includes:
* - I/O ports driver.
* - Buffered, interrupt driven, serial driver.
* - A demo supporting the kernel test suite.
@@ -29,9 +29,9 @@
*/
/**
- * @defgroup STM32F103_PAL I/O Ports Support
+ * @defgroup STM32_PAL STM32 I/O Ports Support
* @brief I/O Ports peripherals support.
- * @details This module supports the STM32F103 GPIO controller. The controller
+ * @details This module supports the STM3 GPIO controller. The controller
* supports the following features (see @ref PAL):
* - 16 bits wide ports.
* - Atomic set/reset functions.
@@ -58,15 +58,15 @@
* resistor can change the resistor setting because the output latch is
* used for resistor selection.
* .
- * @ingroup STM32F103
+ * @ingroup STM32
*/
/**
- * @defgroup STM32F103_SERIAL USART Support
+ * @defgroup STM32_SERIAL STM32 USART Support
* @brief USART peripherals support.
- * @details The serial driver supports the STM32F103 USARTs in asynchronous
+ * @details The serial driver supports the STM32 USARTs in asynchronous
* mode.
*
- * @ingroup STM32F103
+ * @ingroup STM32
*/
\ No newline at end of file
diff --git a/os/io/platforms/STM32F103/serial_lld.c b/os/io/platforms/STM32F103/serial_lld.c
index 2a727dc43..29a75ac88 100644
--- a/os/io/platforms/STM32F103/serial_lld.c
+++ b/os/io/platforms/STM32F103/serial_lld.c
@@ -18,9 +18,9 @@
*/
/**
- * @file STM32F103/serial_lld.c
- * @brief STM32F103 low level serial driver code
- * @addtogroup STM32F103_SERIAL
+ * @file STM32/serial_lld.c
+ * @brief STM32 low level serial driver code
+ * @addtogroup STM32_SERIAL
* @{
*/
diff --git a/os/io/platforms/STM32F103/serial_lld.h b/os/io/platforms/STM32F103/serial_lld.h
index a623eb308..ed80f8b5d 100644
--- a/os/io/platforms/STM32F103/serial_lld.h
+++ b/os/io/platforms/STM32F103/serial_lld.h
@@ -18,9 +18,9 @@
*/
/**
- * @file STM32F103/serial_lld.h
- * @brief STM32F103 low level serial driver header
- * @addtogroup STM32F103_SERIAL
+ * @file STM32/serial_lld.h
+ * @brief STM32 low level serial driver header
+ * @addtogroup STM32_SERIAL
* @{
*/
@@ -159,7 +159,7 @@ struct _serial_driver_data {
};
/**
- * @brief Generic Serial Driver static initializer.
+ * @brief STM32 Serial Driver configuration structure.
* @details An instance of this structure must be passed to @p sdStart()
* in order to configure and start a serial driver operations.
*