pub enum ChipMode {
StandbyRc,
StandbyXosc,
Fs,
Rx,
Tx,
Other(u8),
}Expand description
The operating mode in bits 6 to 4 of the status byte, from Table 13-76.
Variants§
StandbyRc
Standby on the 13 MHz RC oscillator (0x2).
StandbyXosc
Standby on the 32 MHz crystal oscillator (0x3).
Fs
Frequency synthesis (0x4).
Rx
Receive (0x5).
Tx
Transmit (0x6).
Other(u8)
A value the datasheet leaves unused or reserved (0x0, 0x1, 0x7).
Trait Implementations§
impl Copy for ChipMode
impl Eq for ChipMode
impl StructuralPartialEq for ChipMode
Auto Trait Implementations§
impl Freeze for ChipMode
impl RefUnwindSafe for ChipMode
impl Send for ChipMode
impl Sync for ChipMode
impl Unpin for ChipMode
impl UnsafeUnpin for ChipMode
impl UnwindSafe for ChipMode
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