mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2025-01-18 12:52:44 +01:00
Merge pull request #10394 from aabadie/pr/boards/frdm-kw41z-update-i2c
boards/frdm-kw41z: update i2c configuration
This commit is contained in:
commit
126f232cc6
@ -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
|
||||
/** @} */
|
||||
|
||||
|
@ -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)
|
||||
/** @} */
|
||||
|
||||
/**
|
||||
|
Loading…
Reference in New Issue
Block a user