stm32/i2c: disable pullup instead of pulldown
This commit is contained in:
parent
456c226b29
commit
3870411a4a
@ -88,7 +88,7 @@ impl Config {
|
||||
Speed::Medium,
|
||||
match self.scl_pullup {
|
||||
true => Pull::Up,
|
||||
false => Pull::Down,
|
||||
false => Pull::None,
|
||||
},
|
||||
);
|
||||
}
|
||||
@ -102,7 +102,7 @@ impl Config {
|
||||
Speed::Medium,
|
||||
match self.sda_pullup {
|
||||
true => Pull::Up,
|
||||
false => Pull::Down,
|
||||
false => Pull::None,
|
||||
},
|
||||
);
|
||||
}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user