diff --git a/va416xx-hal/src/uart.rs b/va416xx-hal/src/uart.rs index d98125d..0dfaf9b 100644 --- a/va416xx-hal/src/uart.rs +++ b/va416xx-hal/src/uart.rs @@ -280,22 +280,6 @@ pub struct Uart { pins: Pins, } -/// UART using the IRQ capabilities of the peripheral. Can be created with the -/// [`Uart::into_uart_with_irq`] function. Currently, only the RX side for IRQ based reception -/// is implemented. -//pub struct UartWithIrq { -//base: UartWithIrqBase, -//pins: Pins, -//} - -/// Type-erased UART using the IRQ capabilities of the peripheral. Can be created with the -/// [`UartWithIrq::downgrade`] function. Currently, only the RX side for IRQ based reception -/// is implemented. -//pub struct UartWithIrqBase { -//pub inner: UartBase, -//irq_info: IrqInfo, -//} - /// Serial receiver pub struct Rx(Uart);