Struct embassy_stm32::peripherals::TIM6
source · pub struct TIM6 { /* private fields */ }
Expand description
TIM6 peripheral
Implementations§
Trait Implementations§
source§impl Basic16bitInstance for TIM6
impl Basic16bitInstance for TIM6
source§fn set_frequency(&mut self, frequency: Hertz)
fn set_frequency(&mut self, frequency: Hertz)
Set the frequency of how many times per second the timer counts up to the max value or down to 0. Read more
source§fn clear_update_interrupt(&mut self) -> bool
fn clear_update_interrupt(&mut self) -> bool
Clear update interrupt. Read more
source§fn enable_update_interrupt(&mut self, enable: bool)
fn enable_update_interrupt(&mut self, enable: bool)
Enable/disable the update interrupt.
source§fn enable_update_dma(&mut self, enable: bool)
fn enable_update_dma(&mut self, enable: bool)
Enable/disable the update dma.
source§fn get_update_dma_state(&self) -> bool
fn get_update_dma_state(&self) -> bool
Get the update dma enable/disable state.
source§fn set_autoreload_preload(&mut self, enable: bool)
fn set_autoreload_preload(&mut self, enable: bool)
Enable/disable autoreload preload.
source§fn get_frequency(&self) -> Hertz
fn get_frequency(&self) -> Hertz
Get the timer frequency.
source§impl Peripheral for TIM6
impl Peripheral for TIM6
source§impl RccPeripheral for TIM6
impl RccPeripheral for TIM6
fn frequency() -> Hertz
fn enable_and_reset_with_cs(_cs: CriticalSection<'_>)
fn disable_with_cs(_cs: CriticalSection<'_>)
fn enable_and_reset()
fn disable()
impl Basic16bitInstance for TIM6
impl RccPeripheral for TIM6
Auto Trait Implementations§
impl RefUnwindSafe for TIM6
impl Send for TIM6
impl Sync for TIM6
impl Unpin for TIM6
impl UnwindSafe for TIM6
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more