diff options
author | barthess <barthess@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2011-06-23 18:31:24 +0000 |
---|---|---|
committer | barthess <barthess@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2011-06-23 18:31:24 +0000 |
commit | 2f77482083766da5b081e3f7bd07924db88ee024 (patch) | |
tree | fe7261a767f6a16f5b494c0bf820d9a53df30f98 /os/hal/platforms/STM32/i2c_lld.h | |
parent | 10153a4f3062c85b4595558df5df41f8962c6aae (diff) | |
download | ChibiOS-2f77482083766da5b081e3f7bd07924db88ee024.tar.gz ChibiOS-2f77482083766da5b081e3f7bd07924db88ee024.tar.bz2 ChibiOS-2f77482083766da5b081e3f7bd07924db88ee024.zip |
I2C. "Sevent" field moved from I2CSlaveConfig to I2CDriver.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/branches/i2c_dev@3072 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'os/hal/platforms/STM32/i2c_lld.h')
-rw-r--r-- | os/hal/platforms/STM32/i2c_lld.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/os/hal/platforms/STM32/i2c_lld.h b/os/hal/platforms/STM32/i2c_lld.h index 0ad317876..7083bf562 100644 --- a/os/hal/platforms/STM32/i2c_lld.h +++ b/os/hal/platforms/STM32/i2c_lld.h @@ -175,6 +175,8 @@ struct I2CDriver{ uint8_t slave_addr1;/*!< 7-bit address of the slave with r\w bit.*/ uint8_t slave_addr2;/*!< Used in 10-bit address mode. */ + EventSource sevent; /*!< Status Change @p EventSource.*/ + /*********** End of the mandatory fields. **********************************/ /** |