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

Trait for Tx interrupt handling.

Required Methods

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

Implementors