#[repr(C)]pub struct PamojaBmp280Coefficients {
pub dig_t1: u16,
pub dig_t2: i16,
pub dig_t3: i16,
pub dig_p1: u16,
pub dig_p2: i16,
pub dig_p3: i16,
pub dig_p4: i16,
pub dig_p5: i16,
pub dig_p6: i16,
pub dig_p7: i16,
pub dig_p8: i16,
pub dig_p9: i16,
}Expand description
A BMP280’s per-chip trimming coefficients, as they sit in its registers.
Fields§
§dig_t1: u16The dig_T1 coefficient.
dig_t2: i16The dig_T2 coefficient.
dig_t3: i16The dig_T3 coefficient.
dig_p1: u16The dig_P1 coefficient.
dig_p2: i16The dig_P2 coefficient.
dig_p3: i16The dig_P3 coefficient.
dig_p4: i16The dig_P4 coefficient.
dig_p5: i16The dig_P5 coefficient.
dig_p6: i16The dig_P6 coefficient.
dig_p7: i16The dig_P7 coefficient.
dig_p8: i16The dig_P8 coefficient.
dig_p9: i16The dig_P9 coefficient.
Trait Implementations§
Source§impl Clone for PamojaBmp280Coefficients
impl Clone for PamojaBmp280Coefficients
Source§fn clone(&self) -> PamojaBmp280Coefficients
fn clone(&self) -> PamojaBmp280Coefficients
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for PamojaBmp280Coefficients
Source§impl Debug for PamojaBmp280Coefficients
impl Debug for PamojaBmp280Coefficients
impl Eq for PamojaBmp280Coefficients
Source§impl From<Calibration> for PamojaBmp280Coefficients
impl From<Calibration> for PamojaBmp280Coefficients
Source§impl PartialEq for PamojaBmp280Coefficients
impl PartialEq for PamojaBmp280Coefficients
Source§fn eq(&self, other: &PamojaBmp280Coefficients) -> bool
fn eq(&self, other: &PamojaBmp280Coefficients) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for PamojaBmp280Coefficients
Auto Trait Implementations§
impl Freeze for PamojaBmp280Coefficients
impl RefUnwindSafe for PamojaBmp280Coefficients
impl Send for PamojaBmp280Coefficients
impl Sync for PamojaBmp280Coefficients
impl Unpin for PamojaBmp280Coefficients
impl UnsafeUnpin for PamojaBmp280Coefficients
impl UnwindSafe for PamojaBmp280Coefficients
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