TemperatureOffset

Struct TemperatureOffset 

Source
pub struct TemperatureOffset { /* private fields */ }
Expand description

This 16-bit register is to be used as a user-defined temperature offset register during system calibration. The offset will be added to the temperature result after linearization. It has a same resolution of 7.8125 m°C and same range of ±256 °C as the temperature result register. The data format is the same as the temperature register. If the added result is out of boundary, then the temperature result will show as the maximum or minimum value. Is written in two’s complement.

Implementations§

Source§

impl TemperatureOffset

Source

pub fn new(val_0: u16) -> Self

Source

pub fn val_0(&self) -> u16

Source

pub fn set_val_0(&mut self, value: u16)

Trait Implementations§

Source§

impl Bitsized for TemperatureOffset

Source§

const BITS: usize = 16usize

Source§

const MAX: Self::ArbitraryInt = {transmute(0xffff): <register::TemperatureOffset as bilge::Bitsized>::ArbitraryInt}

Source§

type ArbitraryInt = u16

Source§

impl Clone for TemperatureOffset

Source§

fn clone(&self) -> TemperatureOffset

Returns a duplicate 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 Debug for TemperatureOffset

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl From<TemperatureOffset> for u16

Source§

fn from(value: TemperatureOffset) -> Self

Converts to this type from the input type.
Source§

impl From<u16> for TemperatureOffset

Source§

fn from(value: u16) -> Self

Converts to this type from the input type.
Source§

impl PartialEq for TemperatureOffset

Source§

fn eq(&self, other: &TemperatureOffset) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl Register for TemperatureOffset

Source§

const ADDRESS: Self::Address = {transmute(0x08): <register::TemperatureOffset as device_register::Register>::Address}

The address of the register
Source§

type Address = Address

Type of the adress, can be used to constrain the registers accepted
Source§

impl Copy for TemperatureOffset

Source§

impl EditableRegister for TemperatureOffset

Source§

impl Eq for TemperatureOffset

Source§

impl ReadableRegister for TemperatureOffset

Source§

impl StructuralPartialEq for TemperatureOffset

Source§

impl WritableRegister for TemperatureOffset

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> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. 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>,

Source§

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>,

Source§

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.
Source§

impl<T> Filled for T
where T: Bitsized + From<<T as Bitsized>::ArbitraryInt>,