pub enum HardwareError {
Act2 = 1,
TimeOverrun = 2,
FifoFull = 3,
IsrDelay = 4,
}
Expand description
The Hardware Error event is used to notify the Host that a hardware failure has occurred in the Controller.
Defined in Vol 2, Part E, Section 7.7.16 of the spec.
Variants§
Act2 = 1
Bluecore act2 error detected.
TimeOverrun = 2
Bluecore time overrun error detected.
FifoFull = 3
Internal FIFO full.
IsrDelay = 4
ISR delay error detected (from cut 2.2).
Trait Implementations§
Source§impl Clone for HardwareError
impl Clone for HardwareError
Source§fn clone(&self) -> HardwareError
fn clone(&self) -> HardwareError
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for HardwareError
impl Debug for HardwareError
Source§impl PartialEq for HardwareError
impl PartialEq for HardwareError
impl Copy for HardwareError
impl StructuralPartialEq for HardwareError
Auto Trait Implementations§
impl Freeze for HardwareError
impl RefUnwindSafe for HardwareError
impl Send for HardwareError
impl Sync for HardwareError
impl Unpin for HardwareError
impl UnwindSafe for HardwareError
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more