diff options
author | barthess <barthess@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2011-09-11 18:19:03 +0000 |
---|---|---|
committer | barthess <barthess@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2011-09-11 18:19:03 +0000 |
commit | ff11f4aa9a4815f3cf4d2a3becba0101cd684a6d (patch) | |
tree | e87bf65e5249f0830931acb7ae48a7e96214f1b7 | |
parent | 9ff43d016e507151e59d2acbf33b701178bbfc90 (diff) | |
download | ChibiOS-ff11f4aa9a4815f3cf4d2a3becba0101cd684a6d.tar.gz ChibiOS-ff11f4aa9a4815f3cf4d2a3becba0101cd684a6d.tar.bz2 ChibiOS-ff11f4aa9a4815f3cf4d2a3becba0101cd684a6d.zip |
I2C. Remove const qualifier from pointer to I2CSlaveConfig.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@3306 35acf78f-673a-0410-8e92-d51de3d6d3f4
-rw-r--r-- | os/hal/platforms/STM32/i2c_lld.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/os/hal/platforms/STM32/i2c_lld.h b/os/hal/platforms/STM32/i2c_lld.h index 548b5418e..aa11bb543 100644 --- a/os/hal/platforms/STM32/i2c_lld.h +++ b/os/hal/platforms/STM32/i2c_lld.h @@ -212,7 +212,7 @@ struct I2CDriver{ /** * @brief Current slave configuration data. */ - const I2CSlaveConfig *id_slave_config; + I2CSlaveConfig *id_slave_config; __IO size_t txbytes; /*!< @brief Number of bytes to be transmitted. */ __IO size_t rxbytes; /*!< @brief Number of bytes to be received. */ |