pub trait Reset: RccBus {
    fn reset(rcc: &mut Rcc);
    unsafe fn reset_unchecked();
}
Expand description

Reset peripheral

Required Methods

Resets peripheral

Safety

Resets peripheral. Takes access to RCC internally

Implementors