aboutsummaryrefslogtreecommitdiffstats
path: root/os/hal/include
diff options
context:
space:
mode:
authorbarthess <barthess@35acf78f-673a-0410-8e92-d51de3d6d3f4>2011-06-23 18:50:13 +0000
committerbarthess <barthess@35acf78f-673a-0410-8e92-d51de3d6d3f4>2011-06-23 18:50:13 +0000
commit97e643a2a2086bf8d52c77d599748849ff6a8148 (patch)
treeaedb080275694db8f9cd34374623ebac30d2a2ec /os/hal/include
parent2f77482083766da5b081e3f7bd07924db88ee024 (diff)
downloadChibiOS-97e643a2a2086bf8d52c77d599748849ff6a8148.tar.gz
ChibiOS-97e643a2a2086bf8d52c77d599748849ff6a8148.tar.bz2
ChibiOS-97e643a2a2086bf8d52c77d599748849ff6a8148.zip
I2C. Commetns style changed to /**/.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/branches/i2c_dev@3073 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'os/hal/include')
-rw-r--r--os/hal/include/i2c.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/os/hal/include/i2c.h b/os/hal/include/i2c.h
index 8f8ae57f6..c14bf2a74 100644
--- a/os/hal/include/i2c.h
+++ b/os/hal/include/i2c.h
@@ -78,13 +78,14 @@
* @brief Driver state machine possible states.
*/
typedef enum {
+ /* master part */
I2C_UNINIT = 0, /**< @brief Not initialized. */
I2C_STOP = 1, /**< @brief Stopped. */
I2C_READY = 2, /**< @brief Ready. */
I2C_ACTIVE = 3, /**< @brief In communication. */
I2C_COMPLETE = 4, /**< @brief Asynchronous operation complete. */
- // slave part
+ /* slave part */
I2C_SACTIVE = 10,
I2C_STRANSMIT = 11,
I2C_SRECEIVE = 12,