Merge pull request #270 from bobmcwhirter/fix_bungled_i2c

Let's adjust i2c the correct way, removing the correct APBesque frequ…
This commit is contained in:
Dario Nieuwenhuis 2021-07-02 20:00:19 +02:00 committed by GitHub
commit 489ef56dea
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 4 deletions

View file

@ -18,10 +18,10 @@ pub struct I2c<'d, T: Instance> {
impl<'d, T: Instance> I2c<'d, T> {
pub fn new<F>(
pclk: Hertz,
_peri: impl Unborrow<Target = T> + 'd,
scl: impl Unborrow<Target = impl SclPin<T>>,
sda: impl Unborrow<Target = impl SdaPin<T>>,
freq: F,
) -> Self
where
F: Into<Hertz>,
@ -42,7 +42,7 @@ impl<'d, T: Instance> I2c<'d, T> {
});
}
let timings = Timings::new(pclk, T::frequency().into());
let timings = Timings::new(T::frequency(), freq.into());
unsafe {
T::regs().cr2().modify(|reg| {

View file

@ -18,10 +18,10 @@ pub struct I2c<'d, T: Instance> {
impl<'d, T: Instance> I2c<'d, T> {
pub fn new<F>(
pclk: Hertz,
_peri: impl Unborrow<Target = T> + 'd,
scl: impl Unborrow<Target = impl SclPin<T>>,
sda: impl Unborrow<Target = impl SdaPin<T>>,
freq: F,
) -> Self
where
F: Into<Hertz>,
@ -42,7 +42,7 @@ impl<'d, T: Instance> I2c<'d, T> {
});
}
let timings = Timings::new(pclk, T::frequency().into());
let timings = Timings::new(T::frequency(), freq.into());
unsafe {
T::regs().timingr().write(|reg| {