Fix typo in derivation of PLLP divisor

This commit is contained in:
Sebastian Goll 2023-04-12 02:07:31 +02:00
parent 201a038134
commit f3699e67b9

View File

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