2023-05-26 21:40:12 +02:00
|
|
|
//! Utilities related to flash.
|
|
|
|
|
|
|
|
mod concat_flash;
|
|
|
|
#[cfg(test)]
|
|
|
|
pub(crate) mod mem_flash;
|
2023-05-26 22:07:23 +02:00
|
|
|
#[cfg(feature = "nightly")]
|
2023-05-26 21:40:12 +02:00
|
|
|
mod partition;
|
|
|
|
|
|
|
|
pub use concat_flash::ConcatFlash;
|
2023-05-26 22:07:23 +02:00
|
|
|
#[cfg(feature = "nightly")]
|
2023-05-26 21:40:12 +02:00
|
|
|
pub use partition::Partition;
|