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

boards/sodaq-autonomo: fix attr order in i2c_config

This commit is contained in:
smlng 2018-07-13 11:21:34 +02:00 committed by dylad
parent a6d4ade2c6
commit 75d7bcb26a

View File

@ -217,8 +217,8 @@ static const i2c_conf_t i2c_config[] = {
{
.dev = &(SERCOM2->I2CM),
.speed = I2C_SPEED_NORMAL,
.sda_pin = GPIO_PIN(PA, 12),
.scl_pin = GPIO_PIN(PA, 13),
.sda_pin = GPIO_PIN(PA, 12),
.mux = GPIO_MUX_C,
.gclk_src = GCLK_CLKCTRL_GEN_GCLK0,
.flags = I2C_FLAG_NONE