fix "prescaler none" which incorrectly set "prescaler divided by 3"

This commit is contained in:
Christian Enderle 2023-02-12 11:31:22 +01:00
parent e1eac15c42
commit d21643c060

View file

@ -158,7 +158,7 @@ impl Into<u8> for APBPrescaler {
impl Into<u8> for AHBPrescaler {
fn into(self) -> u8 {
match self {
AHBPrescaler::NotDivided => 1,
AHBPrescaler::NotDivided => 0x0,
AHBPrescaler::Div2 => 0x08,
AHBPrescaler::Div3 => 0x01,
AHBPrescaler::Div4 => 0x09,