TxISR

Trait TxISR 

Source
pub trait TxISR {
    // Required method
    fn is_tx_empty(&self) -> bool;
}
Expand description

Trait for Tx interrupt handling.

Required Methods§

Source

fn is_tx_empty(&self) -> bool

Return true if the tx register is empty (and can accept data)

Implementors§

Source§

impl<UART: Instance, WORD> TxISR for Serial<UART, WORD>
where Tx<UART, WORD>: TxISR,

Source§

impl<UART: Instance, WORD> TxISR for Tx<UART, WORD>