Trait stm32f103xx_hal::prelude::_embedded_hal_digital_ToggleableOutputPin[][src]

pub trait _embedded_hal_digital_ToggleableOutputPin {
    fn toggle(&mut self);
}

Output pin that can be toggled

This trait is available if embedded-hal is built with the "unproven" feature.

See toggleable to use a software implementation if both OutputPin and StatefulOutputPin are implemented. Otherwise, implement this using hardware mechanisms.

Required Methods

Toggle pin output.

Implementors