aboutsummaryrefslogtreecommitdiffstats
path: root/os/hal/include/uart.h
diff options
context:
space:
mode:
Diffstat (limited to 'os/hal/include/uart.h')
-rw-r--r--os/hal/include/uart.h18
1 files changed, 9 insertions, 9 deletions
diff --git a/os/hal/include/uart.h b/os/hal/include/uart.h
index 005282f5e..7d707d4d0 100644
--- a/os/hal/include/uart.h
+++ b/os/hal/include/uart.h
@@ -63,27 +63,27 @@
* @brief Driver state machine possible states.
*/
typedef enum {
- UART_UNINIT = 0, /**< @brief Not initialized. */
- UART_STOP = 1, /**< @brief Stopped. */
- UART_READY = 2 /**< @brief Ready. */
+ UART_UNINIT = 0, /**< Not initialized. */
+ UART_STOP = 1, /**< Stopped. */
+ UART_READY = 2 /**< Ready. */
} uartstate_t;
/**
* @brief Transmitter state machine states.
*/
typedef enum {
- UART_TX_IDLE = 0, /**< @brief Not transmitting. */
- UART_TX_ACTIVE = 1, /**< @brief Transmitting. */
- UART_TX_COMPLETE = 2 /**< @brief Buffer complete. */
+ UART_TX_IDLE = 0, /**< Not transmitting. */
+ UART_TX_ACTIVE = 1, /**< Transmitting. */
+ UART_TX_COMPLETE = 2 /**< Buffer complete. */
} uarttxstate_t;
/**
* @brief Receiver state machine states.
*/
typedef enum {
- UART_RX_IDLE = 0, /**< @brief Not receiving. */
- UART_RX_ACTIVE = 1, /**< @brief Receiving. */
- UART_RX_COMPLETE = 2 /**< @brief Buffer complete. */
+ UART_RX_IDLE = 0, /**< Not receiving. */
+ UART_RX_ACTIVE = 1, /**< Receiving. */
+ UART_RX_COMPLETE = 2 /**< Buffer complete. */
} uartrxstate_t;
#include "uart_lld.h"