Type Alias imxrt_hal::timer::BlockingGpt

source ·
pub type BlockingGpt<const N: u8, const HZ: u32> = Blocking<Gpt<N>, HZ>;
Expand description

A GPT that acts as a blocking timer.

Aliased Type§

struct BlockingGpt<const N: u8, const HZ: u32> { /* private fields */ }

Implementations§

source§

impl<const N: u8, const HZ: u32> BlockingGpt<N, HZ>

source

pub fn from_gpt(gpt: Gpt<N>) -> Self

Create a blocking adapter from a GPT.