-
Notifications
You must be signed in to change notification settings - Fork 2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
boards/nucleo-f303re: fix I2C[1] sda_pin and scl_af settings #16275
Conversation
The changes are consistent with the 303xE datasheet (whereas the original values were not). Is there a particular reason why for SCL the AF was adjusted to the pin, and for SDA the pin was adjusted to the AF? |
I think it mainly to match a layout where both pins are close to each other: So since @chrysn verified the datasheet values this one seems good to go, @roh849 can you modify the commit message to fit our coding conventions, there are some details here, but basically, the commit should be something like |
I modified the commit message title. @chrysn: Thanks for removing the comment markers. |
@roh849 you modified the PR title, not the commit message ;) |
I modified the commit message too. |
Did you push? I don't see the change in github |
You can edit your commit with |
seems to be a difficult birth ;) |
Thanks @roh849 its all good now, let see if murdock agrees, I triggered the CI! |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ACK!
Contribution description
boards/nucleo-f303re: fix I2C[1] sda_pin and scl_af settings
The config-values of second i2c-device did not match the values given in stm32f303re datasheet - now they do.
Testing procedure
The new configuration has been tested with tests/periph_i2c, tests/driver_bmx280, tests/driver_at24cxxx and suitable i2c devices (bme280-sensor, 24lc512-eeprom)