Struct imxrt_hal::pwm::Unclocked[][src]

pub struct Unclocked<M> { /* fields omitted */ }

A PWM peripheral that is not receiving a clock input

You may access the PWM components by using the clock() method.

Implementations

impl Unclocked<U1>[src]

pub fn clock(self, handle: &mut Handle) -> PWM<U1>[src]

Enable the input clock for this PWM module. Returns a PWM instance that can allocated PWM outputs.

impl Unclocked<U2>[src]

pub fn clock(self, handle: &mut Handle) -> PWM<U2>[src]

Enable the input clock for this PWM module. Returns a PWM instance that can allocated PWM outputs.

impl Unclocked<U3>[src]

pub fn clock(self, handle: &mut Handle) -> PWM<U3>[src]

Enable the input clock for this PWM module. Returns a PWM instance that can allocated PWM outputs.

impl Unclocked<U4>[src]

pub fn clock(self, handle: &mut Handle) -> PWM<U4>[src]

Enable the input clock for this PWM module. Returns a PWM instance that can allocated PWM outputs.

Auto Trait Implementations

impl<M> Send for Unclocked<M> where
    M: Send

impl<M> !Sync for Unclocked<M>

impl<M> Unpin for Unclocked<M> where
    M: Unpin

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.