Struct rtic_monotonics::stm32::Tim3Backend
source · pub struct Tim3Backend;
Expand description
Monotonic timer backend implementation.
Implementations§
Trait Implementations§
source§impl TimerQueueBackend for Tim3Backend
impl TimerQueueBackend for Tim3Backend
source§fn set_compare(instant: Self::Ticks)
fn set_compare(instant: Self::Ticks)
Set the compare value of the timer interrupt. Read more
source§fn clear_compare_flag()
fn clear_compare_flag()
Clear the compare interrupt flag.
source§fn pend_interrupt()
fn pend_interrupt()
Pend the timer’s interrupt.
source§fn enable_timer()
fn enable_timer()
Optional. This is used to save power, this is called when the timer queue is not empty. Read more
source§fn disable_timer()
fn disable_timer()
Optional. This is used to save power, this is called when the timer queue is empty. Read more
source§fn on_interrupt()
fn on_interrupt()
Optional. Runs on interrupt before any timer queue handling.
source§fn timer_queue() -> &'static TimerQueue<Tim3Backend>
fn timer_queue() -> &'static TimerQueue<Tim3Backend>
Returns a reference to the underlying timer queue.
Auto Trait Implementations§
impl Freeze for Tim3Backend
impl RefUnwindSafe for Tim3Backend
impl Send for Tim3Backend
impl Sync for Tim3Backend
impl Unpin for Tim3Backend
impl UnwindSafe for Tim3Backend
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