Trait esp32_hal::gpio::RTCOutputPin[][src]

pub trait RTCOutputPin {
    fn rtc_enable_output(&mut self, on: bool) -> &mut Self;
fn rtc_set_output_high(&mut self, on: bool) -> &mut Self;
fn rtc_set_drive_strength(&mut self, strength: DriveStrength) -> &mut Self;
fn rtc_enable_open_drain(&mut self, on: bool) -> &mut Self;
fn rtc_enable_output_in_sleep_mode(&mut self, on: bool) -> &mut Self; }
Expand description

Functions available on RTC output pins

Required methods

Enable/disable the RTC output

Set the RTC output to high or low

Set RTC drive strength

Enable/Disable RTC open drain

Enable/disable the RTC output while in sleep mode

Implementors