Revert "Forgot set_count_direction and set_clock_division in 32 bit instance"
This commit is contained in:
parent
22e820b743
commit
dffdb9268b
@ -49,10 +49,6 @@ pub(crate) mod sealed {
|
||||
fn regs_gp32() -> crate::pac::timer::TimGp32;
|
||||
|
||||
fn set_frequency(&mut self, frequency: Hertz);
|
||||
|
||||
fn set_count_direction(&mut self, direction: vals::Dir);
|
||||
|
||||
fn set_clock_division(&mut self, ckd: vals::Ckd);
|
||||
}
|
||||
|
||||
pub trait AdvancedControlInstance: GeneralPurpose16bitInstance {
|
||||
@ -321,14 +317,6 @@ macro_rules! impl_32bit_timer {
|
||||
crate::pac::$inst
|
||||
}
|
||||
|
||||
fn set_count_direction(&mut self, direction: vals::Dir) {
|
||||
Self::regs_gp32().cr1().modify(|r| r.set_dir(direction));
|
||||
}
|
||||
|
||||
fn set_clock_division(&mut self, ckd: vals::Ckd) {
|
||||
Self::regs_gp32().cr1().modify(|r| r.set_ckd(ckd));
|
||||
}
|
||||
|
||||
fn set_frequency(&mut self, frequency: Hertz) {
|
||||
use core::convert::TryInto;
|
||||
let f = frequency.0;
|
||||
|
Loading…
Reference in New Issue
Block a user