Enum bluenrg::HardwareError[][src]

pub enum HardwareError {
    SpiFramingError,
    RadioStateError,
    TimerOverrunError,
}

Hardware event codes returned by the HardwareError HCI event.

Variants

Error on the SPI bus has been detected, most likely caused by incorrect SPI configuration on the external micro-controller.

Caused by a slow crystal startup and they are an indication that the HS_STARTUP_TIME in the device configuration needs to be tuned. After this event is recommended to hardware reset the device.

Caused by a slow crystal startup and they are an indication that the HS_STARTUP_TIME in the device configuration needs to be tuned. After this event is recommended to hardware reset the device.

Trait Implementations

impl Copy for HardwareError
[src]

impl Clone for HardwareError
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for HardwareError
[src]

Formats the value using the given formatter. Read more

impl PartialEq for HardwareError
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl TryFrom<u8> for HardwareError
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

Auto Trait Implementations