pub type UsartReader<USART, RX, TX, CLOCK> = UsartReader<Atmega, USART, RX, TX, CLOCK>;
Aliased Type§
struct UsartReader<USART, RX, TX, CLOCK> { /* private fields */ }
Implementations
Source§impl<H, USART, RX, TX, CLOCK> UsartReader<H, USART, RX, TX, CLOCK>where
USART: UsartOps<H, RX, TX>,
impl<H, USART, RX, TX, CLOCK> UsartReader<H, USART, RX, TX, CLOCK>where
USART: UsartOps<H, RX, TX>,
Sourcepub fn reunite(
self,
other: UsartWriter<H, USART, RX, TX, CLOCK>,
) -> Usart<H, USART, RX, TX, CLOCK>
pub fn reunite( self, other: UsartWriter<H, USART, RX, TX, CLOCK>, ) -> Usart<H, USART, RX, TX, CLOCK>
Merge this UsartReader
with a UsartWriter
back into a single Usart
peripheral.