[][src]Enum imxrt_iomuxc::DriveStrength

#[repr(u32)]pub enum DriveStrength {
    Disabled,
    R0,
    R0_2,
    R0_3,
    R0_4,
    R0_5,
    R0_6,
    R0_7,
}

Drive strength

The drive strength enable (DSE) can be explained as series resistance between an ideal driver’s output and its load. To achieve maximal transferred power, the impedance of the driver has to match the load impedance.

Variants

Disabled
R0

150 Ohm @ 3.3V, 260 Ohm@1.8V

R0_2

R0 / 2

R0_3

R0 / 3

R0_4

R0 / 4

R0_5
R0_6
R0_7

Trait Implementations

impl Clone for DriveStrength[src]

impl Copy for DriveStrength[src]

impl Debug for DriveStrength[src]

impl Eq for DriveStrength[src]

impl PartialEq<DriveStrength> for DriveStrength[src]

impl StructuralEq for DriveStrength[src]

impl StructuralPartialEq for DriveStrength[src]

Auto Trait Implementations

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[src]

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.