aboutsummaryrefslogtreecommitdiffstats
path: root/os/hal/include/can.h
diff options
context:
space:
mode:
Diffstat (limited to 'os/hal/include/can.h')
-rw-r--r--os/hal/include/can.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/os/hal/include/can.h b/os/hal/include/can.h
index f87c57fee..bf0caabed 100644
--- a/os/hal/include/can.h
+++ b/os/hal/include/can.h
@@ -82,11 +82,11 @@
* @brief Driver state machine possible states.
*/
typedef enum {
- CAN_UNINIT = 0, /**< @brief Not initialized. */
- CAN_STOP = 1, /**< @brief Stopped. */
- CAN_STARTING = 2, /**< @brief Starting. */
- CAN_READY = 3, /**< @brief Ready. */
- CAN_SLEEP = 4 /**< @brief Sleep state. */
+ CAN_UNINIT = 0, /**< Not initialized. */
+ CAN_STOP = 1, /**< Stopped. */
+ CAN_STARTING = 2, /**< Starting. */
+ CAN_READY = 3, /**< Ready. */
+ CAN_SLEEP = 4 /**< Sleep state. */
} canstate_t;
#include "can_lld.h"