SerialFlowControl

Trait SerialFlowControl 

Source
pub trait SerialFlowControl {
    type Cts<PULL>;
    type Rts;
}
Expand description

Hardware flow control (RS232)

Required Associated Types§

Source

type Cts<PULL>

“Clear To Send” blocks the data transmission at the end of the current transfer when high

Input floating/ Input pull-up

Source

type Rts

“Request to send” indicates that the USART is ready to receive a data (when low)

Alternate function push-pull

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§