Struct tm4c129x_hal::gpio::gpiog::PG1

source ·
pub struct PG1<MODE> { /* private fields */ }
Expand description

Pin

Implementations§

source§

impl<MODE> PG1<MODE>where MODE: IsUnlocked,

source

pub fn into_af_push_pull<AF>( self, _gpio_control: &mut GpioControl ) -> PG1<AlternateFunction<AF, PushPull>>where AF: AlternateFunctionChoice,

Configures the pin to serve as alternate function 1 through 15. Disables open-drain to make the output a push-pull.

source

pub fn into_af_pull_up<AF>( self, _gpio_control: &mut GpioControl ) -> PG1<AlternateFunction<AF, PullUp>>where AF: AlternateFunctionChoice,

Configures the pin to serve as alternate function 1 through 15 with a weak pull-up resistor.

source

pub fn into_af_pull_down<AF>( self, _gpio_control: &mut GpioControl ) -> PG1<AlternateFunction<AF, PullDown>>where AF: AlternateFunctionChoice,

Configures the pin to serve as alternate function 1 through 15 with a weak pull-down resistor.

source

pub fn into_af_open_drain<AF, ODM>( self, _gpio_control: &mut GpioControl ) -> PG1<AlternateFunction<AF, OpenDrain<ODM>>>where AF: AlternateFunctionChoice, ODM: OpenDrainMode,

Configures the pin to serve as alternate function 1 through 15. Enables open-drain (useful for I2C SDA, for example).

source

pub fn into_floating_input(self) -> PG1<Input<Floating>>

Configures the pin to operate as a floating input pin

source

pub fn into_pull_down_input(self) -> PG1<Input<PullDown>>

Configures the pin to operate as a pulled down input pin

source

pub fn into_pull_up_input(self) -> PG1<Input<PullUp>>

Configures the pin to operate as a pulled up input pin

source

pub fn into_open_drain_output<ODM>(self) -> PG1<Output<OpenDrain<ODM>>>where ODM: OpenDrainMode,

Configures the pin to operate as an open drain output pin

source

pub fn into_push_pull_output(self) -> PG1<Output<PushPull>>

Configures the pin to operate as an push pull output pin

source

pub fn into_tri_state(self) -> PG1<Tristate>

Configures the pin as tri-state

source§

impl<MODE> PG1<MODE>

source

pub fn downgrade(self) -> PGx<MODE>

Erases the pin number from the type

This is useful when you want to collect the pins into an array where you need all the elements to have the same type

source§

impl<MODE> PG1<Input<MODE>>where MODE: InputMode,

source

pub fn set_interrupt_mode(&mut self, mode: InterruptMode)

Enables or disables interrupts on this GPIO pin.

source

pub fn get_interrupt_status(&self) -> bool

Returns the current interrupt status for this pin.

source

pub fn clear_interrupt(&self)

Marks the interrupt for this pin as handled. You should call this (or perform its functionality) from the ISR.

source§

impl PG1<Locked>

source

pub fn unlock(self, _gpio_control: &mut GpioControl) -> PG1<Tristate>

Unlock a GPIO so that it can be used. This is required on ‘special’ GPIOs that the manufacturer doesn’t want you to change by accident - like NMI and JTAG pins.

Trait Implementations§

source§

impl<MODE> InputPin for PG1<Input<MODE>>where MODE: InputMode,

source§

fn is_high(&self) -> bool

👎Deprecated since 0.2.2: Deprecated because the methods cannot return errors. Users should use the traits in digital::v2.
Is the input pin high?
source§

fn is_low(&self) -> bool

👎Deprecated since 0.2.2: Deprecated because the methods cannot return errors. Users should use the traits in digital::v2.
Is the input pin low?
source§

impl<MODE> OutputPin for PG1<Output<MODE>>where MODE: OutputMode,

source§

fn set_high(&mut self)

👎Deprecated since 0.2.2: Deprecated because the methods cannot return errors. Users should use the traits in digital::v2.
Drives the pin high Read more
source§

fn set_low(&mut self)

👎Deprecated since 0.2.2: Deprecated because the methods cannot return errors. Users should use the traits in digital::v2.
Drives the pin low Read more
source§

impl<MODE> StatefulOutputPin for PG1<Output<MODE>>where MODE: OutputMode,

source§

fn is_set_high(&self) -> bool

👎Deprecated since 0.2.2: Deprecated because the methods cannot return errors. Users should use the traits in digital::v2.
Is the pin in drive high mode? Read more
source§

fn is_set_low(&self) -> bool

👎Deprecated since 0.2.2: Deprecated because the methods cannot return errors. Users should use the traits in digital::v2.
Is the pin in drive low mode? Read more
source§

impl<T> SdaPin<I2C1> for PG1<AlternateFunction<AF2, T>>where T: OutputMode,

Auto Trait Implementations§

§

impl<MODE> RefUnwindSafe for PG1<MODE>where MODE: RefUnwindSafe,

§

impl<MODE> Send for PG1<MODE>where MODE: Send,

§

impl<MODE> Sync for PG1<MODE>where MODE: Sync,

§

impl<MODE> Unpin for PG1<MODE>where MODE: Unpin,

§

impl<MODE> UnwindSafe for PG1<MODE>where MODE: UnwindSafe,

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T> InputPin for Twhere T: InputPin,

§

type Error = ()

Error type
source§

fn is_low(&self) -> Result<bool, <T as InputPin>::Error>

Is the input pin low?
source§

fn is_high(&self) -> Result<bool, <T as InputPin>::Error>

Is the input pin high?
source§

impl<T, U> Into<U> for Twhere U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> OutputPin for Twhere T: OutputPin,

§

type Error = ()

Error type
source§

fn set_low(&mut self) -> Result<(), <T as OutputPin>::Error>

Drives the pin low Read more
source§

fn set_high(&mut self) -> Result<(), <T as OutputPin>::Error>

Drives the pin high Read more
source§

fn set_state(&mut self, state: PinState) -> Result<(), Self::Error>

Drives the pin high or low depending on the provided value Read more
source§

impl<T> StatefulOutputPin for Twhere T: StatefulOutputPin + OutputPin,

source§

fn is_set_low(&self) -> Result<bool, <T as OutputPin>::Error>

Is the pin in drive low mode? Read more
source§

fn is_set_high(&self) -> Result<bool, <T as OutputPin>::Error>

Is the pin in drive high mode? Read more
source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

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

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.