Skip to content
Snippets Groups Projects
Commit 97d0851d authored by Yegor Yefremov's avatar Yegor Yefremov
Browse files

cpu/stm32_common: fix UART documentation


Don't include overridden typedefs into doxygen as otherwise,
they'll appear twice.

Signed-off-by: default avatarYegor Yefremov <yegorslists@googlemail.com>
parent 3e5658d4
No related branches found
No related tags found
No related merge requests found
...@@ -370,6 +370,7 @@ typedef enum { ...@@ -370,6 +370,7 @@ typedef enum {
STM32_LPUART, /**< STM32 Low-power UART (LPUART) module type */ STM32_LPUART, /**< STM32 Low-power UART (LPUART) module type */
} uart_type_t; } uart_type_t;
#ifndef DOXYGEN
/** /**
* @brief Invalid UART mode mask * @brief Invalid UART mode mask
* *
...@@ -419,6 +420,7 @@ typedef enum { ...@@ -419,6 +420,7 @@ typedef enum {
UART_STOP_BITS_2 = USART_CR2_STOP_1, /**< 2 stop bits */ UART_STOP_BITS_2 = USART_CR2_STOP_1, /**< 2 stop bits */
} uart_stop_bits_t; } uart_stop_bits_t;
/** @} */ /** @} */
#endif /* ndef DOXYGEN */
/** /**
* @brief Structure for UART configuration data * @brief Structure for UART configuration data
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment