Trait 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,

OSZAR »