fix "prescaler none" which incorrectly set "prescaler divided by 3"
This commit is contained in:
parent
e1eac15c42
commit
d21643c060
1 changed files with 1 additions and 1 deletions
|
@ -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,
|
||||
|
|
Loading…
Reference in a new issue