[][src]Enum cc13x2_cc26x2_hal::aux_aiodio0::iomode::IO2R

pub enum IO2R {
    OPEN_SOURCE,
    OPEN_DRAIN,
    IN,
    OUT,
}

Possible values of the field IO2

Variants

OPEN_SOURCE

Open-Source Mode:

When IOPOE bit 2 is 0:

  • If GPIODOUT bit 2 is 0: AUXIO[8i+2] is tri-stated or pulled. This depends on IOC:IOCFGn.PULL_CTL.
  • If GPIODOUT bit 2 is 1: AUXIO[8i+2] is driven high.

When IOPOE bit 2 is 1:

  • If signal selected by IO2PSEL.SRC is 0: AUXIO[8i+2] is tri-stated or pulled. This depends on IOC:IOCFGn.PULL_CTL.
  • If signal selected by IO2PSEL.SRC is 1: AUXIO[8i+2] is driven high.
OPEN_DRAIN

Open-Drain Mode:

When IOPOE bit 2 is 0:

  • If GPIODOUT bit 2 is 0: AUXIO[8i+2] is driven low.
  • If GPIODOUT bit 2 is 1: AUXIO[8i+2] is tri-stated or pulled. This depends on IOC:IOCFGn.PULL_CTL.

When IOPOE bit 2 is 1:

  • If signal selected by IO2PSEL.SRC is 0: AUXIO[8i+2] is driven low.
  • If signal selected by IO2PSEL.SRC is 1: AUXIO[8i+2] is tri-stated or pulled. This depends on IOC:IOCFGn.PULL_CTL.
IN

Input Mode:

When GPIODIE bit 2 is 0: AUXIO[8i+2] is enabled for analog signal transfer.

When GPIODIE bit 2 is 1: AUXIO[8i+2] is enabled for digital input.

OUT

Output Mode:

When IOPOE bit 2 is 0: GPIODOUT bit 2 drives AUXIO[8i+2].

When IOPOE bit 2 is 1: The signal selected by IO2PSEL.SRC drives AUXIO[8i+2].

Methods

impl IO2R[src]

pub fn bits(&self) -> u8[src]

Value of the field as raw bits

pub fn is_open_source(&self) -> bool[src]

Checks if the value of the field is OPEN_SOURCE

pub fn is_open_drain(&self) -> bool[src]

Checks if the value of the field is OPEN_DRAIN

pub fn is_in_(&self) -> bool[src]

Checks if the value of the field is IN

pub fn is_out(&self) -> bool[src]

Checks if the value of the field is OUT

Trait Implementations

impl Copy for IO2R[src]

impl Debug for IO2R[src]

impl PartialEq<IO2R> for IO2R[src]

#[must_use]
fn ne(&self, other: &Rhs) -> bool
1.0.0
[src]

This method tests for !=.

impl Clone for IO2R[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations

impl Send for IO2R

impl Sync for IO2R

Blanket Implementations

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

type Error = Infallible

The type returned in the event of a conversion error.

impl<T> From for T[src]

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

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

The type returned in the event of a conversion error.

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

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

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

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

impl<T> Same for T

type Output = T

Should always be Self