pub struct FixedLengthSignal<const N: usize>(/* private fields */);
Expand description

Stack based signal storage for an RMT signal.

Use this if you know the length of the pulses ahead of time and prefer to use the stack.

Internally RMT uses pairs of pulses as part of its data structure. This implementation you need to set a two Pulses for each index.

let p1 = Pulse::new(PinState::High, PulseTicks::new(10));
let p2 = Pulse::new(PinState::Low, PulseTicks::new(11));
let p3 = Pulse::new(PinState::High, PulseTicks::new(12));
let p4 = Pulse::new(PinState::Low, PulseTicks::new(13));

let mut s = FixedLengthSignal::new();
s.set(0, &(p1, p2));
s.set(1, &(p3, p4));

Implementations§

source§

impl<const N: usize> FixedLengthSignal<N>

source

pub fn new() -> Self

Creates a new array of size <N>, where the number of pulses is N * 2.

source

pub fn set( &mut self, index: usize, pair: &(Pulse, Pulse) ) -> Result<(), EspError>

Set a pair of Pulses at a position in the array.

Trait Implementations§

source§

impl<const N: usize> Clone for FixedLengthSignal<N>

source§

fn clone(&self) -> FixedLengthSignal<N>

Returns a copy of the value. Read more
1.0.0§

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

Performs copy-assignment from source. Read more
source§

impl<const N: usize> Default for FixedLengthSignal<N>

source§

fn default() -> Self

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

impl<const N: usize> Signal for FixedLengthSignal<N>

Auto Trait Implementations§

§

impl<const N: usize> RefUnwindSafe for FixedLengthSignal<N>

§

impl<const N: usize> Send for FixedLengthSignal<N>

§

impl<const N: usize> Sync for FixedLengthSignal<N>

§

impl<const N: usize> Unpin for FixedLengthSignal<N>

§

impl<const N: usize> UnwindSafe for FixedLengthSignal<N>

Blanket Implementations§

§

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

§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
§

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

§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
§

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

§

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

Mutably borrows from an owned value. Read more
§

impl<T> From<T> for T

§

fn from(t: T) -> T

Returns the argument unchanged.

§

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

§

fn into(self) -> U

Calls U::from(self).

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

§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
§

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

§

type Error = Infallible

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

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

Performs the conversion.
§

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.
§

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

Performs the conversion.