Add HIL test for into_buffered uart on embassy-rp

This commit is contained in:
Mathias
2023-03-14 10:54:15 +01:00
parent bce1ce7dcb
commit 89a371d10c
2 changed files with 55 additions and 2 deletions

View File

@ -1,12 +1,11 @@
use core::marker::PhantomData;
use embassy_cortex_m::interrupt::InterruptExt;
use embassy_hal_common::{into_ref, PeripheralRef};
use crate::dma::{AnyChannel, Channel};
use crate::gpio::sealed::Pin;
use crate::gpio::AnyPin;
use crate::{pac, peripherals, Peripheral, RegExt};
use crate::{pac, peripherals, Peripheral};
#[cfg(feature = "nightly")]
mod buffered;