embassy_embedded_hal/flash/
mod.rs

1//! Utilities related to flash.
2
3mod concat_flash;
4#[cfg(test)]
5pub(crate) mod mem_flash;
6pub mod partition;
7
8pub use concat_flash::ConcatFlash;