stm32/i2c: disable pullup instead of pulldown

This commit is contained in:
Fabian Viöl 2024-10-10 16:12:51 +02:00
parent 456c226b29
commit 3870411a4a

View File

@ -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,
},
);
}