File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -8,6 +8,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
8
8
<!-- next-header -->
9
9
## Unreleased - ReleaseDate
10
10
11
+ - fix: stm32/i2c: pull-down was enabled instead of pull-none when no internal pull-up was needed.
11
12
- feat: Improve blocking hash speed
12
13
- fix: Fix vrefbuf building with log feature
13
14
- fix: Fix performing a hash after performing a hmac
Original file line number Diff line number Diff line change @@ -156,7 +156,7 @@ impl Config {
156
156
self . gpio_speed ,
157
157
match self . scl_pullup {
158
158
true => Pull :: Up ,
159
- false => Pull :: Down ,
159
+ false => Pull :: None ,
160
160
} ,
161
161
) ;
162
162
}
@@ -170,7 +170,7 @@ impl Config {
170
170
self . gpio_speed ,
171
171
match self . sda_pullup {
172
172
true => Pull :: Up ,
173
- false => Pull :: Down ,
173
+ false => Pull :: None ,
174
174
} ,
175
175
) ;
176
176
}
You can’t perform that action at this time.
0 commit comments