embassy-embedded-hal 0.6.0

Collection of utilities to use `embedded-hal` and `embedded-storage` traits with Embassy.
Documentation
//! Flash Partition utilities

use embedded_storage::nor_flash::{NorFlashError, NorFlashErrorKind};

mod asynch;
mod blocking;

pub use asynch::Partition;
pub use blocking::BlockingPartition;

/// Partition error
#[derive(Debug, PartialEq, Eq)]
#[cfg_attr(feature = "defmt", derive(defmt::Format))]
pub enum Error<T> {
    /// The requested flash area is outside the partition
    OutOfBounds,
    /// Underlying flash error
    Flash(T),
}

impl<T: NorFlashError> NorFlashError for Error<T> {
    fn kind(&self) -> NorFlashErrorKind {
        match self {
            Error::OutOfBounds => NorFlashErrorKind::OutOfBounds,
            Error::Flash(f) => f.kind(),
        }
    }
}