pub trait Enable: RcuBus {
    fn enable(apb: &mut Self::Bus);
    fn disable(apb: &mut Self::Bus);
}
Expand description

Enable/disable peripheral

Required Methods

Implementors