atsamd_hal::timer

Type Alias TimerCounter3

Source
pub type TimerCounter3 = TimerCounter<Tc3>;

Aliased Type§

struct TimerCounter3 { /* private fields */ }

Implementations

Source§

impl<T> TimerCounter<T>
where T: AsyncCount16,

Source

pub fn into_future<I>(self, _irq: I) -> TimerFuture<T>

Transform a TimerCounter into an TimerFuture

Source§

impl TimerCounter<Tc3>

Source

pub fn tc3_(clock: &Tc2Tc3Clock, tc: Tc3, mclk: &mut Mclk) -> Self

Configure this timer counter instance. The clock is obtained from the GenericClockController instance and its frequency impacts the resolution and maximum range of the timeout values that can be passed to the start method. Note that some hardware timer instances share the same clock generator instance and thus will be clocked at the same rate.

Trait Implementations

Source§

impl<TC> InterruptDrivenTimer for TimerCounter<TC>
where TC: Count16,

Source§

fn enable_interrupt(&mut self)

Enable the interrupt generation for this hardware timer. This method only sets the clock configuration to trigger the interrupt; it does not configure the interrupt controller or define an interrupt handler.

Source§

fn disable_interrupt(&mut self)

Disables interrupt generation for this hardware timer. This method only sets the clock configuration to prevent triggering the interrupt; it does not configure the interrupt controller.

Source§

fn start<T>(&mut self, timeout: T)

Start the timer with a given timeout in nanoseconds
Source§

fn wait(&mut self) -> Result<(), Infallible>

Wait for the timer to finish counting down without blocking.
Source§

impl<TC> CountDown for TimerCounter<TC>
where TC: Count16,

Source§

type Time = Duration<u32, 1, 1000000000>

The unit of time used by this timer
Source§

fn start<T>(&mut self, timeout: T)
where T: Into<Self::Time>,

Starts a new count down
Source§

fn wait(&mut self) -> Result<(), Void>

Non-blockingly “waits” until the count down finishes Read more
Source§

impl<TC> Periodic for TimerCounter<TC>