aboutsummaryrefslogtreecommitdiffstats
path: root/os/hal/include/i2c.h
diff options
context:
space:
mode:
Diffstat (limited to 'os/hal/include/i2c.h')
-rw-r--r--os/hal/include/i2c.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/os/hal/include/i2c.h b/os/hal/include/i2c.h
index 1ffba8a3e..ef8e93f40 100644
--- a/os/hal/include/i2c.h
+++ b/os/hal/include/i2c.h
@@ -57,13 +57,13 @@
* @brief Driver state machine possible states.
*/
typedef enum {
- I2C_UNINIT = 0, /**< @brief Not initialized. */
- I2C_STOP = 1, /**< @brief Stopped. */
- I2C_READY = 2, /**< @brief Ready. */
- I2C_MREADY = 3, /**< @brief START and address sent. */
- I2C_MTRANSMIT = 4, /**< @brief Master transmitting. */
- I2C_MRECEIVE = 5, /**< @brief Master receiving. */
- I2C_MERROR = 6 /**< @brief Error condition. */
+ I2C_UNINIT = 0, /**< Not initialized. */
+ I2C_STOP = 1, /**< Stopped. */
+ I2C_READY = 2, /**< Ready. */
+ I2C_MREADY = 3, /**< START and address sent. */
+ I2C_MTRANSMIT = 4, /**< Master transmitting. */
+ I2C_MRECEIVE = 5, /**< Master receiving. */
+ I2C_MERROR = 6 /**< Error condition. */
} i2cstate_t;
#include "i2c_lld.h"