pub trait CtsPin<UART>: Sealed {
    // Required method
    fn enable(&mut self, _uart: &mut UART);
}
Expand description

CTS pin

Required Methods§

source

fn enable(&mut self, _uart: &mut UART)

Enables the CTS functionality if a valid pin is given (not ()).

Implementations on Foreign Types§

source§

impl<U> CtsPin<U> for ()

source§

fn enable(&mut self, _uart: &mut U)

Implementors§