Closed ijager closed 3 years ago
When USART is split into Rx/Tx objects.
Inspired by f4xx-hal
Usage:
if self.rx.is_rxne() { match self.rx.read() { Ok(byte) => { // do stuff }, Err(_err) => { // handle uart read error } }; }
LGTM
When USART is split into Rx/Tx objects.
Inspired by f4xx-hal
Usage: