1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-12-30 00:41:17 +01:00

boards/frdm-kw41z: update i2c configuration

Remove first I2C that is not reachable from the pinout and is not connected to anything. Move I2C1 as the first I2C device.
Update FXOS8700 I2C device in board configuration
This commit is contained in:
Alexandre Abadie 2018-11-15 08:57:20 +01:00
parent 836fe3dbba
commit fb5aed464f
2 changed files with 2 additions and 13 deletions

View File

@ -88,7 +88,7 @@ extern "C"
* @name FXOS8700CQ 3-axis accelerometer and magnetometer bus configuration
* @{
*/
#define FXOS8700_PARAM_I2C I2C_DEV(1)
#define FXOS8700_PARAM_I2C I2C_DEV(0)
#define FXOS8700_PARAM_ADDR 0x1F
/** @} */

View File

@ -245,16 +245,6 @@ static const spi_conf_t spi_config[] = {
* @{
*/
static const i2c_conf_t i2c_config[] = {
{
.i2c = I2C0,
.scl_pin = GPIO_PIN(PORT_B, 0),
.sda_pin = GPIO_PIN(PORT_B, 1),
.freq = CLOCK_BUSCLOCK,
.speed = I2C_SPEED_FAST,
.irqn = I2C0_IRQn,
.scl_pcr = (PORT_PCR_MUX(3)),
.sda_pcr = (PORT_PCR_MUX(3)),
},
{
.i2c = I2C1,
.scl_pin = GPIO_PIN(PORT_C, 2),
@ -267,8 +257,7 @@ static const i2c_conf_t i2c_config[] = {
},
};
#define I2C_NUMOF (sizeof(i2c_config) / sizeof(i2c_config[0]))
#define I2C_0_ISR (isr_i2c0)
#define I2C_1_ISR (isr_i2c1)
#define I2C_0_ISR (isr_i2c1)
/** @} */
/**