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.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/os/hal/include/can.h b/os/hal/include/can.h
index 2a385b224..54623945e 100644
--- a/os/hal/include/can.h
+++ b/os/hal/include/can.h
@@ -56,8 +56,9 @@
typedef enum {
CAN_UNINIT = 0, /**< @brief Not initialized. */
CAN_STOP = 1, /**< @brief Stopped. */
- CAN_READY = 2, /**< @brief Ready. */
- CAN_SLEEP = 3 /**< @brief Sleep state. */
+ CAN_STARTING = 2, /**< @brief Starting. */
+ CAN_READY = 3, /**< @brief Ready. */
+ CAN_SLEEP = 4 /**< @brief Sleep state. */
} canstate_t;
#include "can_lld.h"