[][src]Enum cc13x2_cc26x2_hal::aux_aiodio3::iomode::IO3R

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

Possible values of the field IO3

Variants

OPEN_SOURCE

Open-Source Mode:

When IOPOE bit 3 is 0:

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

When IOPOE bit 3 is 1:

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

Open-Drain Mode:

When IOPOE bit 3 is 0:

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

When IOPOE bit 3 is 1:

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

Input Mode:

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

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

OUT

Output Mode:

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

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

Methods

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

impl Debug for IO3R[src]

impl PartialEq<IO3R> for IO3R[src]

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

This method tests for !=.

impl Clone for IO3R[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 IO3R

impl Sync for IO3R

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