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>
impl<'d, C: ConfigurableChannel> Ppi<'d, C, 1, 1>
Sourcepub fn new_one_to_one(
ch: impl Peripheral<P = C> + 'd,
event: Event<'d>,
task: Task<'d>,
) -> Self
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>
impl<'d, C: ConfigurableChannel> Ppi<'d, C, 1, 2>
Sourcepub fn new_one_to_two(
ch: impl Peripheral<P = C> + 'd,
event: Event<'d>,
task1: Task<'d>,
task2: Task<'d>,
) -> Self
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>
impl<'d, C: ConfigurableChannel, const EVENT_COUNT: usize, const TASK_COUNT: usize> Ppi<'d, C, EVENT_COUNT, TASK_COUNT>
Sourcepub fn new_many_to_many(
ch: impl Peripheral<P = C> + 'd,
events: [Event<'d>; EVENT_COUNT],
tasks: [Task<'d>; TASK_COUNT],
) -> Self
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.
Trait Implementations§
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> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more