[][src]Trait nrf52832_hal::prelude::Ppi

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

Trait to represent a Programmable Peripheral Interconnect channel.

Required methods

fn enable(&mut self)

Enables the channel.

fn disable(&mut self)

Disables the channel.

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

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