remove old code
Some checks are pending
Rust/va416xx-rs/pipeline/pr-main Build started...

This commit is contained in:
Robin Müller 2024-09-13 18:24:15 +02:00
parent e7b4edf75e
commit 8054f335fd
Signed by: muellerr
GPG Key ID: A649FB78196E3849

View File

@ -280,22 +280,6 @@ pub struct Uart<UartInstance, Pins> {
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<Uart, Pins> {
//base: UartWithIrqBase<Uart>,
//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<UART> {
//pub inner: UartBase<UART>,
//irq_info: IrqInfo,
//}
/// Serial receiver
pub struct Rx<Uart>(Uart);