[][src]Trait nrf52832_hal::ppi::Ppi

pub trait Ppi: PpiSealed {
    pub fn enable(&mut self);
pub fn disable(&mut self);
pub fn set_fork_task_endpoint<T>(&mut self, task: &T)
    where
        T: Task
; }

Trait to represent a Programmable Peripheral Interconnect channel.

Required methods

pub fn enable(&mut self)[src]

Enables the channel.

pub fn disable(&mut self)[src]

Disables the channel.

pub fn set_fork_task_endpoint<T>(&mut self, task: &T) where
    T: Task, 
[src]

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

Loading content...

Implementors

impl<P> Ppi for P where
    P: Channel, 
[src]

Loading content...