Closed dzamlo closed 11 months ago
I was able to use git bisect
to identify the commit where it starts to fail: 5c5e6818195b364199e583eb559b0042d392b3e7
set config.rcc.clk48_src = Clk48Src::PLL1_Q
. The default is HSI48, which that chip doesn't have.
(the reason that commit breaks it is it now requires specifying clk48_src
explicitly, vs before it would try to guess it based on the enabled clocks)
Thanks, this works, sorry for the noise,
When I try to run the
rng
example on mystm32l476rg
I get the following error:I have identified that it is the line
let mut rng = Rng::new(p.RNG, Irqs);
that cause the issue.I have adapted the chip feature of
embassy-stm32
inexamples/stm32l4/Cargo.toml
and the chip argument to probe-rs inexamples/stm32l4/.cargo/config.toml
.Other examples work without any issue.