Trait nrf51_hal::prelude::Ppi

source ·
pub trait Ppi: PpiSealed {
    // Required methods
    fn enable(&mut self);
    fn disable(&mut self);
}
Expand description

Trait to represent a Programmable Peripheral Interconnect channel.

Required Methods§

source

fn enable(&mut self)

Enables the channel.

source

fn disable(&mut self)

Disables the channel.

Implementors§

source§

impl<P> Ppi for P
where P: Channel,