Type Alias atmega_hal::usart::UsartReader
source · 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.