1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

Merge pull request #10445 from MrKevinWeiss/pr/fix/i2cpinout/stmdisco

boards/stm32f4discovery: Change sda pin
This commit is contained in:
Leandro Lanzieri 2020-06-24 17:34:08 +02:00 committed by GitHub
commit 8e60c8b5e3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -232,7 +232,7 @@ static const i2c_conf_t i2c_config[] = {
.dev = I2C1,
.speed = I2C_SPEED_NORMAL,
.scl_pin = GPIO_PIN(PORT_B, 6),
.sda_pin = GPIO_PIN(PORT_B, 7),
.sda_pin = GPIO_PIN(PORT_B, 9),
.scl_af = GPIO_AF4,
.sda_af = GPIO_AF4,
.bus = APB1,