boards/nrf52-feather: fix typo in I2C1 initialization

This commit is contained in:
raiden00pl 2023-05-19 17:04:06 +02:00 committed by Petro Karashchenko
parent e1ffacfc33
commit 235e0e92a8

View File

@ -88,7 +88,7 @@ int nrf52_i2ctool(void)
#endif #endif
#ifdef CONFIG_NRF52_I2C1_MASTER #ifdef CONFIG_NRF52_I2C1_MASTER
ret = nrf52_i2c_register(0); ret = nrf52_i2c_register(1);
#endif #endif
return ret; return ret;
} }