mirror of
https://github.com/embassy-rs/embassy.git
synced 2024-11-22 06:42:32 +00:00
Merge #1358
1358: Fix typo in derivation of PLLP divisor for STM32F2 family r=Dirbaio a=sgoll This PR fixes a typo in the derivation of the PLLP divisor for the STM32F2 family. Fixes #1357 Co-authored-by: Sebastian Goll <sebastian.goll@gmx.de>
This commit is contained in:
commit
ba8cafb20c
@ -148,7 +148,7 @@ impl Into<Pllp> for PLLMainDiv {
|
||||
match self {
|
||||
PLLMainDiv::Div2 => Pllp::DIV2,
|
||||
PLLMainDiv::Div4 => Pllp::DIV4,
|
||||
PLLMainDiv::Div6 => Pllp::DIV8,
|
||||
PLLMainDiv::Div6 => Pllp::DIV6,
|
||||
PLLMainDiv::Div8 => Pllp::DIV8,
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user