pub struct DacCode(pub u16);
Expand description

Custom type for referencing DAC output codes. The internal integer is the raw code written to the DAC output register.

Tuple Fields§

§0: u16

Implementations§

source§

impl DacCode

source

pub const FULL_SCALE: f32 = 10.2400007f32

source

pub const VOLT_PER_LSB: f32 = 3.12500022E-4f32

source

pub const LSB_PER_VOLT: f32 = 3199.99976f32

Trait Implementations§

source§

impl Clone for DacCode

source§

fn clone(&self) -> DacCode

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl From<DacCode> for f32

source§

fn from(code: DacCode) -> f32

Converts to this type from the input type.
source§

impl From<DacCode> for i16

source§

fn from(code: DacCode) -> i16

Converts to this type from the input type.
source§

impl From<i16> for DacCode

source§

fn from(value: i16) -> Self

Encode signed 16-bit values into DAC offset binary for a bipolar output configuration.

source§

impl From<u16> for DacCode

source§

fn from(value: u16) -> Self

Create a dac code from the provided DAC output code.

source§

impl TryFrom<f32> for DacCode

§

type Error = ()

The type returned in the event of a conversion error.
source§

fn try_from(voltage: f32) -> Result<DacCode, ()>

Performs the conversion.
source§

impl Copy for DacCode

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.