1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-01-18 12:52:44 +01:00

drivers/i2c: removed init_slave for now

This commit is contained in:
Hauke Petersen 2015-09-24 16:35:34 +02:00
parent 4e90fdf505
commit 9591d2049b

View File

@ -131,17 +131,6 @@ typedef enum {
*/
int i2c_init_master(i2c_t dev, i2c_speed_t speed);
/**
* @brief Initialize an I2C device to run in slave mode
*
* @param[in] dev the device to initialize
* @param[in] address the devices I2C address
*
* @return 0 on success
* @return -1 on undefined device given
*/
int i2c_init_slave(i2c_t dev, uint8_t address);
/**
* @brief Get mutually exclusive access to the given I2C bus
*