Type Alias TimG

Source
pub type TimG<'a> = TimG<'a, Freq20MHz, true>;

Aliased Type§

struct TimG<'a> { /* private fields */ }

Implementations

Source§

impl<F, const C3: bool> TimG<'_, F, C3>
where F: Frequency,

Source

pub const fn new( base: StaticRef<TimgRegisters>, clocksource: ClockSource, ) -> TimG<'_, F, C3>

Source

pub fn handle_interrupt(&self)

Source

pub fn disable_wdt(&self)

Trait Implementations

Source§

impl<'a, F, const C3: bool> Alarm<'a> for TimG<'a, F, C3>
where F: Frequency,

Source§

fn set_alarm_client(&self, client: &'a dyn AlarmClient)

Specify the callback for when the counter reaches the alarm value. If there was a previously installed callback this call replaces it.
Source§

fn set_alarm( &self, reference: <TimG<'a, F, C3> as Time>::Ticks, dt: <TimG<'a, F, C3> as Time>::Ticks, )

Specify when the callback should be called and enable it. The callback will be enqueued when Time::now() == reference + dt. The callback itself may not run exactly at this time, due to delays. However, it it assured to execute after reference + dt: it can be delayed but will never fire early. The method takes reference and dt rather than a single value denoting the counter value so it can distinguish between alarms which have very recently already passed and those in the far far future (see #1651).
Source§

fn get_alarm(&self) -> <TimG<'a, F, C3> as Time>::Ticks

Return the current alarm value. This is undefined at boot and otherwise returns now + dt from the last call to set_alarm.
Source§

fn disarm(&self) -> Result<(), ErrorCode>

Disable the alarm and stop it from firing in the future. Valid Result<(), ErrorCode> codes are: Read more
Source§

fn is_armed(&self) -> bool

Returns whether the alarm is currently armed. Note that this does not reliably indicate whether there will be a future callback: it is possible that the alarm has triggered (and disarmed) and a callback is pending and has not been called yet. In this case it possible for is_armed to return false yet to receive a callback.
Source§

fn minimum_dt(&self) -> <TimG<'a, F, C3> as Time>::Ticks

Return the minimum dt value that is supported. Any dt smaller than this will automatically be increased to this minimum value.
Source§

impl<'a, F, const C3: bool> Counter<'a> for TimG<'a, F, C3>
where F: Frequency,

Source§

fn set_overflow_client(&self, _client: &'a dyn OverflowClient)

Specify the callback for when the counter overflows its maximum value (defined by Ticks). If there was a previously registered callback this call replaces it.
Source§

fn start(&self) -> Result<(), ErrorCode>

Starts the free-running hardware counter. Valid Result<(), ErrorCode> values are: Read more
Source§

fn stop(&self) -> Result<(), ErrorCode>

Stops the free-running hardware counter. Valid Result<(), ErrorCode> values are: Read more
Source§

fn reset(&self) -> Result<(), ErrorCode>

Resets the counter to 0. This may introduce jitter on the counter. Resetting the counter has no effect on any pending overflow callbacks. If a client needs to reset and clear pending callbacks it should call stop before reset. Valid Result<(), ErrorCode> values are: Read more
Source§

fn is_running(&self) -> bool

Returns whether the counter is currently running.
Source§

impl<F, const C3: bool> Time for TimG<'_, F, C3>
where F: Frequency,

Source§

type Frequency = F

The number of ticks per second
Source§

type Ticks = Ticks64

The width of a time value
Source§

fn now(&self) -> <TimG<'_, F, C3> as Time>::Ticks

Returns a timestamp. Depending on the implementation of Time, this could represent either a static timestamp or a sample of a counter; if an implementation relies on it being constant or changing it should use Timestamp or Counter.