pub trait Instance {
    // Required method
    fn register_block(&self) -> &RegisterBlock;

    // Provided methods
    fn disable_tx_interrupts(&mut self) { ... }
    fn disable_rx_interrupts(&mut self) { ... }
    fn get_rx_fifo_count(&self) -> u16 { ... }
    fn get_tx_fifo_count(&self) -> u16 { ... }
}
Expand description

USB Serial JTAG peripheral instance

Required Methods§

source

fn register_block(&self) -> &RegisterBlock

Provided Methods§

Implementors§