diff options
author | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2010-10-31 13:06:42 +0000 |
---|---|---|
committer | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2010-10-31 13:06:42 +0000 |
commit | 4f1b492119f90b34fdbc13e88d892612c21cb08e (patch) | |
tree | 5bf3ac6baeabe285c22c5f9bab75ab8856c3ed0c /os/hal/include/i2c.h | |
parent | e5d3bdcf767bfaef69b2a0cb02169bfb23ef80f4 (diff) | |
download | ChibiOS-4f1b492119f90b34fdbc13e88d892612c21cb08e.tar.gz ChibiOS-4f1b492119f90b34fdbc13e88d892612c21cb08e.tar.bz2 ChibiOS-4f1b492119f90b34fdbc13e88d892612c21cb08e.zip |
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@2313 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'os/hal/include/i2c.h')
-rw-r--r-- | os/hal/include/i2c.h | 14 |
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"
|