Embassy
embassy-nrf

Crates

git

Versions

nrf5340-net

Flavors

Struct embassy_nrf::ppi::Ppi

source ·
pub struct Ppi<'d, C: Channel, const EVENT_COUNT: usize, const TASK_COUNT: usize> { /* private fields */ }
Expand description

PPI channel driver.

Implementations§

source§

impl<'d, C: ConfigurableChannel> Ppi<'d, C, 1, 1>

source

pub fn new_one_to_one( ch: impl Peripheral<P = C> + 'd, event: Event<'d>, task: Task<'d> ) -> Self

Configure PPI channel to trigger task on event.

source§

impl<'d, C: ConfigurableChannel> Ppi<'d, C, 1, 2>

source

pub fn new_one_to_two( ch: impl Peripheral<P = C> + 'd, event: Event<'d>, task1: Task<'d>, task2: Task<'d> ) -> Self

Configure PPI channel to trigger both task1 and task2 on event.

source§

impl<'d, C: ConfigurableChannel, const EVENT_COUNT: usize, const TASK_COUNT: usize> Ppi<'d, C, EVENT_COUNT, TASK_COUNT>

source

pub fn new_many_to_many( ch: impl Peripheral<P = C> + 'd, events: [Event<'d>; EVENT_COUNT], tasks: [Task<'d>; TASK_COUNT] ) -> Self

Configure a DPPI channel to trigger all tasks when any of the events fires.

source§

impl<'d, C: Channel, const EVENT_COUNT: usize, const TASK_COUNT: usize> Ppi<'d, C, EVENT_COUNT, TASK_COUNT>

source

pub fn enable(&mut self)

Enables the channel.

source

pub fn disable(&mut self)

Disables the channel.

Trait Implementations§

source§

impl<'d, C: Channel, const EVENT_COUNT: usize, const TASK_COUNT: usize> Drop for Ppi<'d, C, EVENT_COUNT, TASK_COUNT>

source§

fn drop(&mut self)

Executes the destructor for this type. Read more

Auto Trait Implementations§

§

impl<'d, C, const EVENT_COUNT: usize, const TASK_COUNT: usize> Freeze for Ppi<'d, C, EVENT_COUNT, TASK_COUNT>
where C: Freeze,

§

impl<'d, C, const EVENT_COUNT: usize, const TASK_COUNT: usize> RefUnwindSafe for Ppi<'d, C, EVENT_COUNT, TASK_COUNT>
where C: RefUnwindSafe,

§

impl<'d, C, const EVENT_COUNT: usize, const TASK_COUNT: usize> Send for Ppi<'d, C, EVENT_COUNT, TASK_COUNT>
where C: Send,

§

impl<'d, C, const EVENT_COUNT: usize, const TASK_COUNT: usize> !Sync for Ppi<'d, C, EVENT_COUNT, TASK_COUNT>

§

impl<'d, C, const EVENT_COUNT: usize, const TASK_COUNT: usize> Unpin for Ppi<'d, C, EVENT_COUNT, TASK_COUNT>
where C: Unpin,

§

impl<'d, C, const EVENT_COUNT: usize, const TASK_COUNT: usize> !UnwindSafe for Ppi<'d, C, EVENT_COUNT, TASK_COUNT>

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