Embassy
embassy-rp

Crates

git

Versions

rp2040

Flavors

Struct embassy_rp::pio::Config

source ·
pub struct Config<'d, PIO: Instance> {
    pub clock_divider: FixedU32<U8>,
    pub out_en_sel: u8,
    pub inline_out_en: bool,
    pub out_sticky: bool,
    pub status_sel: StatusSource,
    pub status_n: u8,
    pub fifo_join: FifoJoin,
    pub shift_in: ShiftConfig,
    pub shift_out: ShiftConfig,
    /* private fields */
}
Expand description

PIO config.

Fields§

§clock_divider: FixedU32<U8>

Clock divisor register for state machines.

§out_en_sel: u8

Which data bit to use for inline OUT enable.

§inline_out_en: bool

Use a bit of OUT data as an auxiliary write enable When used in conjunction with OUT_STICKY.

§out_sticky: bool

Continuously assert the most recent OUT/SET to the pins.

§status_sel: StatusSource

Which source to use for checking status.

§status_n: u8

Status comparison level.

§fifo_join: FifoJoin

Configure FIFO allocation.

§shift_in: ShiftConfig

Input shifting config.

§shift_out: ShiftConfig

Output shifting config.

Implementations§

source§

impl<'d, PIO: Instance> Config<'d, PIO>

source

pub fn get_exec(&self) -> ExecConfig

Get execution configuration.

source

pub unsafe fn set_exec(&mut self, e: ExecConfig)

Update execution configuration.

source

pub fn get_pins(&self) -> PinConfig

Get pin configuration.

source

pub unsafe fn set_pins(&mut self, p: PinConfig)

Update pin configuration.

source

pub fn use_program( &mut self, prog: &LoadedProgram<'d, PIO>, side_set: &[&Pin<'d, PIO>] )

Configures this state machine to use the given program, including jumping to the origin of the program. The state machine is not started.

side_set sets the range of pins affected by side-sets. The range must be consecutive. Side-set pins must configured as outputs using StateMachine::set_pin_dirs to be effective.

source

pub fn set_jmp_pin(&mut self, pin: &Pin<'d, PIO>)

Set pin used to signal jump.

source

pub fn set_set_pins(&mut self, pins: &[&Pin<'d, PIO>])

Sets the range of pins affected by SET instructions. The range must be consecutive. Set pins must configured as outputs using StateMachine::set_pin_dirs to be effective.

source

pub fn set_out_pins(&mut self, pins: &[&Pin<'d, PIO>])

Sets the range of pins affected by OUT instructions. The range must be consecutive. Out pins must configured as outputs using StateMachine::set_pin_dirs to be effective.

source

pub fn set_in_pins(&mut self, pins: &[&Pin<'d, PIO>])

Sets the range of pins used by IN instructions. The range must be consecutive. In pins must configured as inputs using StateMachine::set_pin_dirs to be effective.

Trait Implementations§

source§

impl<'d, PIO: Clone + Instance> Clone for Config<'d, PIO>

source§

fn clone(&self) -> Config<'d, PIO>

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl<'d, PIO: Debug + Instance> Debug for Config<'d, PIO>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<'d, PIO: Instance> Default for Config<'d, PIO>

source§

fn default() -> Self

Returns the “default value” for a type. Read more
source§

impl<'d, PIO: Copy + Instance> Copy for Config<'d, PIO>

Auto Trait Implementations§

§

impl<'d, PIO> Freeze for Config<'d, PIO>

§

impl<'d, PIO> RefUnwindSafe for Config<'d, PIO>
where PIO: RefUnwindSafe,

§

impl<'d, PIO> Send for Config<'d, PIO>
where PIO: Send,

§

impl<'d, PIO> Sync for Config<'d, PIO>
where PIO: Sync,

§

impl<'d, PIO> Unpin for Config<'d, PIO>

§

impl<'d, PIO> !UnwindSafe for Config<'d, PIO>

Blanket Implementations§

source§

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

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Az for T

source§

fn az<Dst>(self) -> Dst
where T: Cast<Dst>,

Casts the value.
source§

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

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

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

source§

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

Mutably borrows from an owned value. Read more
source§

impl<Src, Dst> CastFrom<Src> for Dst
where Src: Cast<Dst>,

source§

fn cast_from(src: Src) -> Dst

Casts the value.
source§

impl<T> CheckedAs for T

source§

fn checked_as<Dst>(self) -> Option<Dst>
where T: CheckedCast<Dst>,

Casts the value.
source§

impl<Src, Dst> CheckedCastFrom<Src> for Dst
where Src: CheckedCast<Dst>,

source§

fn checked_cast_from(src: Src) -> Option<Dst>

Casts the value.
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where 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<Src, Dst> LosslessTryInto<Dst> for Src
where Dst: LosslessTryFrom<Src>,

source§

fn lossless_try_into(self) -> Option<Dst>

Performs the conversion.
source§

impl<Src, Dst> LossyInto<Dst> for Src
where Dst: LossyFrom<Src>,

source§

fn lossy_into(self) -> Dst

Performs the conversion.
source§

impl<T> OverflowingAs for T

source§

fn overflowing_as<Dst>(self) -> (Dst, bool)
where T: OverflowingCast<Dst>,

Casts the value.
source§

impl<Src, Dst> OverflowingCastFrom<Src> for Dst
where Src: OverflowingCast<Dst>,

source§

fn overflowing_cast_from(src: Src) -> (Dst, bool)

Casts the value.
source§

impl<T> Same for T

§

type Output = T

Should always be Self
source§

impl<T> SaturatingAs for T

source§

fn saturating_as<Dst>(self) -> Dst
where T: SaturatingCast<Dst>,

Casts the value.
source§

impl<Src, Dst> SaturatingCastFrom<Src> for Dst
where Src: SaturatingCast<Dst>,

source§

fn saturating_cast_from(src: Src) -> Dst

Casts the value.
source§

impl<T, U> TryFrom<U> for T
where 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 T
where 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.
source§

impl<T> UnwrappedAs for T

source§

fn unwrapped_as<Dst>(self) -> Dst
where T: UnwrappedCast<Dst>,

Casts the value.
source§

impl<Src, Dst> UnwrappedCastFrom<Src> for Dst
where Src: UnwrappedCast<Dst>,

source§

fn unwrapped_cast_from(src: Src) -> Dst

Casts the value.
source§

impl<T> WrappingAs for T

source§

fn wrapping_as<Dst>(self) -> Dst
where T: WrappingCast<Dst>,

Casts the value.
source§

impl<Src, Dst> WrappingCastFrom<Src> for Dst
where Src: WrappingCast<Dst>,

source§

fn wrapping_cast_from(src: Src) -> Dst

Casts the value.