Enum cc1101::Error[][src]

pub enum Error<E> {
    RxOverflow,
    CrcMismatch,
    Spi(E),
}

CC1101 errors.

Variants

The RX FIFO buffer overflowed, too small buffer for configured packet length.

Corrupt packet received with invalid CRC.

Platform-dependent SPI-errors, such as IO errors.

Trait Implementations

impl<E: Debug> Debug for Error<E>
[src]

Formats the value using the given formatter. Read more

impl<E> From<E> for Error<E>
[src]

Performs the conversion.

Auto Trait Implementations

impl<E> Send for Error<E> where
    E: Send

impl<E> Sync for Error<E> where
    E: Sync