pub struct Rp2040Monotonic { /* private fields */ }
Expand description

RP2040 Timer implementation for rtic_monotonic::Monotonic.

Implementations§

source§

impl Rp2040Monotonic

source

pub fn new(timer: TIMER) -> Self

Create a new Monotonic based on RP2040’s Timer peripheral.

Trait Implementations§

source§

impl Monotonic for Rp2040Monotonic

source§

const DISABLE_INTERRUPT_ON_EMPTY_QUEUE: bool = false

This tells RTIC if it should disable the interrupt bound to the monotonic if there are no scheduled tasks. One may want to set this to false if one is using the on_interrupt method to perform housekeeping and need overflow interrupts to happen, such as when extending a 16 bit timer to 32/64 bits, even if there are no scheduled tasks.
§

type Instant = Instant<u64, 1, 1000000>

The type for instant, defining an instant in time. Read more
§

type Duration = Duration<u64, 1, 1000000>

The type for duration, defining an duration of time. Read more
source§

fn now(&mut self) -> Self::Instant

Get the current time.
source§

unsafe fn reset(&mut self)

Optionally resets the counter to zero for a fixed baseline in a system. Read more
source§

fn set_compare(&mut self, instant: Self::Instant)

Set the compare value of the timer interrupt. Read more
source§

fn clear_compare_flag(&mut self)

Clear the compare interrupt flag.
source§

fn zero() -> Self::Instant

The time at time zero. Used by RTIC before the monotonic has been initialized.
source§

fn on_interrupt(&mut self)

Optional. Commonly used for performing housekeeping of a timer when it has been extended, e.g. a 16 bit timer extended to 32/64 bits. This will be called at the end of the interrupt handler after all other operations have finished.
source§

fn enable_timer(&mut self)

Optional. This is used to save power, this is called when the Monotonic interrupt is enabled.
source§

fn disable_timer(&mut self)

Optional. This is used to save power, this is called when the Monotonic interrupt is disabled.

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for Twhere U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.