pub trait ValidConfig: AnyConfig { }
Expand description

Marker trait for valid UART Configurations

A functional UART peripheral must have, at a minimum either a Rx or a Tx Pad.

Implementors§

source§

impl<P, C> ValidConfig for Config<P, C>where P: ValidPads, C: CharSize,