aboutsummaryrefslogtreecommitdiffstats
path: root/os/hal/include/serial.h
diff options
context:
space:
mode:
Diffstat (limited to 'os/hal/include/serial.h')
-rw-r--r--os/hal/include/serial.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/os/hal/include/serial.h b/os/hal/include/serial.h
index 79e40fa72..d14a47805 100644
--- a/os/hal/include/serial.h
+++ b/os/hal/include/serial.h
@@ -91,9 +91,9 @@
* @brief Driver state machine possible states.
*/
typedef enum {
- SD_UNINIT = 0, /**< @brief Not initialized. */
- SD_STOP = 1, /**< @brief Stopped. */
- SD_READY = 2 /**< @brief Ready. */
+ SD_UNINIT = 0, /**< Not initialized. */
+ SD_STOP = 1, /**< Stopped. */
+ SD_READY = 2 /**< Ready. */
} sdstate_t;
/**