9 lines
145 B
Rust
9 lines
145 B
Rust
//! Utilities related to flash.
|
|
|
|
mod concat_flash;
|
|
#[cfg(test)]
|
|
pub(crate) mod mem_flash;
|
|
pub mod partition;
|
|
|
|
pub use concat_flash::ConcatFlash;
|