#[repr(u8)]pub enum CurrentBias {
M20 = 0,
Typ = 1,
P20 = 2,
P40 = 3,
}Expand description
Bias current control settings for DACCs and ADCs.
§Warning
None of the SAM3 chip families except for SAM3U have documentation that states what the values
for IBCTLCH0, IBCTLCH1, or IBCTLDACCORE can be, or what they mean. However, the docs for
the SAM3U chips have something
for IBCTL, and it’s just assumed that they mean the same thing on other chip families.
Variants§
Trait Implementations§
Source§impl Clone for CurrentBias
impl Clone for CurrentBias
Source§fn clone(&self) -> CurrentBias
fn clone(&self) -> CurrentBias
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 CurrentBias
impl Debug for CurrentBias
impl Copy for CurrentBias
Auto Trait Implementations§
impl Freeze for CurrentBias
impl RefUnwindSafe for CurrentBias
impl Send for CurrentBias
impl Sync for CurrentBias
impl Unpin for CurrentBias
impl UnwindSafe for CurrentBias
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