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
This commit is contained in:
parent
9ff43d016e
commit
ff11f4aa9a
|
@ -212,7 +212,7 @@ struct I2CDriver{
|
||||||
/**
|
/**
|
||||||
* @brief Current slave configuration data.
|
* @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 txbytes; /*!< @brief Number of bytes to be transmitted. */
|
||||||
__IO size_t rxbytes; /*!< @brief Number of bytes to be received. */
|
__IO size_t rxbytes; /*!< @brief Number of bytes to be received. */
|
||||||
|
|
Loading…
Reference in New Issue