[][src]Trait nrf52832_hal::prelude::ConfigurablePpi

pub trait ConfigurablePpi {
    fn set_task_endpoint<T>(&mut self, task: &T)
    where
        T: Task
;
fn set_event_endpoint<E>(&mut self, event: &E)
    where
        E: Event
; }

Traits that extends the Ppi trait, marking a channel as fully configurable.

Required methods

fn set_task_endpoint<T>(&mut self, task: &T) where
    T: Task, 

Sets the task that must be triggered when the configured event occurs. The user must provide a reference to the task.

fn set_event_endpoint<E>(&mut self, event: &E) where
    E: Event, 

Sets the event that will trigger the chosen task(s). The user must provide a reference to the event.

Loading content...

Implementors

impl<P> ConfigurablePpi for P where
    P: Channel + NotFixed, 
[src]

Loading content...