#[repr(u16)]pub enum FREQ_RANGE_A {
_1_15MHZ = 2_720,
_10_30MHZ = 2_721,
_25_60MHZ = 2_722,
_40_100MHZ = 2_723,
}Expand description
The 12-bit code is intended to give some protection against accidental writes. An invalid setting will retain the previous value. The actual value being used can be read from STATUS_FREQ_RANGE
Value on reset: 0
Variants§
_1_15MHZ = 2_720
2720: 101010100000
_10_30MHZ = 2_721
2721: 101010100001
_25_60MHZ = 2_722
2722: 101010100010
_40_100MHZ = 2_723
2723: 101010100011
Trait Implementations§
Source§impl Clone for FREQ_RANGE_A
impl Clone for FREQ_RANGE_A
Source§fn clone(&self) -> FREQ_RANGE_A
fn clone(&self) -> FREQ_RANGE_A
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 FREQ_RANGE_A
impl Debug for FREQ_RANGE_A
Source§impl PartialEq for FREQ_RANGE_A
impl PartialEq for FREQ_RANGE_A
impl Copy for FREQ_RANGE_A
impl Eq for FREQ_RANGE_A
impl IsEnum for FREQ_RANGE_A
impl StructuralPartialEq for FREQ_RANGE_A
Auto Trait Implementations§
impl Freeze for FREQ_RANGE_A
impl RefUnwindSafe for FREQ_RANGE_A
impl Send for FREQ_RANGE_A
impl Sync for FREQ_RANGE_A
impl Unpin for FREQ_RANGE_A
impl UnwindSafe for FREQ_RANGE_A
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Choices> CoproductSubsetter<CNil, HNil> for Choices
impl<Choices> CoproductSubsetter<CNil, HNil> for Choices
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more