I2C. Remove const qualifier from pointer to I2CSlaveConfig. Step 2.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@3307 35acf78f-673a-0410-8e92-d51de3d6d3f4master
parent
ff11f4aa9a
commit
a08f38d06c
|
@ -256,11 +256,11 @@ extern "C" {
|
||||||
void i2cObjectInit(I2CDriver *i2cp);
|
void i2cObjectInit(I2CDriver *i2cp);
|
||||||
void i2cStart(I2CDriver *i2cp, const I2CConfig *config);
|
void i2cStart(I2CDriver *i2cp, const I2CConfig *config);
|
||||||
void i2cStop(I2CDriver *i2cp);
|
void i2cStop(I2CDriver *i2cp);
|
||||||
void i2cMasterTransmit(I2CDriver *i2cp, const I2CSlaveConfig *i2cscfg,
|
void i2cMasterTransmit(I2CDriver *i2cp, I2CSlaveConfig *i2cscfg,
|
||||||
uint16_t slave_addr,
|
uint16_t slave_addr,
|
||||||
uint8_t *txbuf, size_t txbytes,
|
uint8_t *txbuf, size_t txbytes,
|
||||||
uint8_t *rxbuf, size_t rxbytes);
|
uint8_t *rxbuf, size_t rxbytes);
|
||||||
void i2cMasterReceive(I2CDriver *i2cp, const I2CSlaveConfig *i2cscfg,
|
void i2cMasterReceive(I2CDriver *i2cp, I2CSlaveConfig *i2cscfg,
|
||||||
uint16_t slave_addr, uint8_t *rxbuf, size_t rxbytes);
|
uint16_t slave_addr, uint8_t *rxbuf, size_t rxbytes);
|
||||||
void i2cMasterStart(I2CDriver *i2cp);
|
void i2cMasterStart(I2CDriver *i2cp);
|
||||||
void i2cMasterStop(I2CDriver *i2cp);
|
void i2cMasterStop(I2CDriver *i2cp);
|
||||||
|
|
|
@ -166,7 +166,7 @@ void i2cStop(I2CDriver *i2cp) {
|
||||||
* you want transmit only
|
* you want transmit only
|
||||||
*/
|
*/
|
||||||
void i2cMasterTransmit(I2CDriver *i2cp,
|
void i2cMasterTransmit(I2CDriver *i2cp,
|
||||||
const I2CSlaveConfig *i2cscfg,
|
I2CSlaveConfig *i2cscfg,
|
||||||
uint16_t slave_addr,
|
uint16_t slave_addr,
|
||||||
uint8_t *txbuf,
|
uint8_t *txbuf,
|
||||||
size_t txbytes,
|
size_t txbytes,
|
||||||
|
@ -210,7 +210,7 @@ void i2cMasterTransmit(I2CDriver *i2cp,
|
||||||
* @param[in] rxbuf pointer to receive buffer
|
* @param[in] rxbuf pointer to receive buffer
|
||||||
*/
|
*/
|
||||||
void i2cMasterReceive(I2CDriver *i2cp,
|
void i2cMasterReceive(I2CDriver *i2cp,
|
||||||
const I2CSlaveConfig *i2cscfg,
|
I2CSlaveConfig *i2cscfg,
|
||||||
uint16_t slave_addr,
|
uint16_t slave_addr,
|
||||||
uint8_t *rxbuf,
|
uint8_t *rxbuf,
|
||||||
size_t rxbytes){
|
size_t rxbytes){
|
||||||
|
|
Loading…
Reference in New Issue