Add TestFlash helper

This commit is contained in:
Rasmus Melchior Jacobsen
2023-05-30 13:41:10 +02:00
parent 1cd87f0028
commit b23e40f722
4 changed files with 135 additions and 0 deletions

View File

@ -0,0 +1,7 @@
#[cfg(feature = "nightly")]
mod asynch;
mod blocking;
#[cfg(feature = "nightly")]
pub(crate) use asynch::AsyncTestFlash;
pub(crate) use blocking::BlockingTestFlash;