Merge pull request #2044 from embassy-rs/stm32-pac-pll-enums

stm32/rcc: LSE xtal is 32768hz, not 32000hz.
This commit is contained in:
Dario Nieuwenhuis 2023-10-11 11:42:27 +00:00 committed by GitHub
commit c283e2d1b9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -89,7 +89,7 @@ impl LsConfig {
Self {
rtc: RtcClockSource::LSE,
lse: Some(LseConfig {
frequency: Hertz(32_000),
frequency: Hertz(32_768),
mode: LseMode::Oscillator(LseDrive::MediumHigh),
}),
lsi: false,