mirror of https://github.com/ARMmbed/mbed-os.git
Merge pull request #10757 from petroborys/master
Add support I2C 3 for target EFM32G11pull/10776/head
commit
dbe274ccf0
|
@ -62,6 +62,11 @@ static uint8_t i2c_get_index(i2c_t *obj)
|
||||||
case I2C_1:
|
case I2C_1:
|
||||||
index = 1;
|
index = 1;
|
||||||
break;
|
break;
|
||||||
|
#endif
|
||||||
|
#ifdef I2C2
|
||||||
|
case I2C_2:
|
||||||
|
index = 2;
|
||||||
|
break;
|
||||||
#endif
|
#endif
|
||||||
default:
|
default:
|
||||||
printf("I2C module not available.. Out of bound access.");
|
printf("I2C module not available.. Out of bound access.");
|
||||||
|
@ -83,6 +88,11 @@ static CMU_Clock_TypeDef i2c_get_clock(i2c_t *obj)
|
||||||
case I2C_1:
|
case I2C_1:
|
||||||
clock = cmuClock_I2C1;
|
clock = cmuClock_I2C1;
|
||||||
break;
|
break;
|
||||||
|
#endif
|
||||||
|
#ifdef I2C2
|
||||||
|
case I2C_2:
|
||||||
|
clock = cmuClock_I2C2;
|
||||||
|
break;
|
||||||
#endif
|
#endif
|
||||||
default:
|
default:
|
||||||
printf("I2C module not available.. Out of bound access. (clock)");
|
printf("I2C module not available.. Out of bound access. (clock)");
|
||||||
|
@ -174,6 +184,11 @@ void i2c_enable_interrupt(i2c_t *obj, uint32_t address, uint8_t enable)
|
||||||
case 1:
|
case 1:
|
||||||
irq_number = I2C1_IRQn;
|
irq_number = I2C1_IRQn;
|
||||||
break;
|
break;
|
||||||
|
#endif
|
||||||
|
#ifdef I2C2
|
||||||
|
case 2:
|
||||||
|
irq_number = I2C2_IRQn;
|
||||||
|
break;
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue