#[repr(C)]pub struct acc_processing_result_t {
pub data_saturated: bool,
pub frame_delayed: bool,
pub calibration_needed: bool,
pub temperature: i16,
pub frame: *mut acc_int16_complex_t,
}Expand description
@brief Result provided by the processing module
Fields§
§data_saturated: boolIndication of sensor data being saturated, can cause data corruption. Lower the receiver gain if this indication is set.
frame_delayed: boolIndication of a delayed frame. The frame rate might need to be lowered if this indication is set.
calibration_needed: boolIndication of calibration needed The sensor calibration needs to be redone if this indication is set.
temperature: i16Temperature in sensor during measurement (in degree Celsius). Note that it has poor absolute accuracy and should only be used for relative temperature measurements.
frame: *mut acc_int16_complex_tPointer to the frame data
Trait Implementations§
Source§impl Clone for acc_processing_result_t
impl Clone for acc_processing_result_t
Source§fn clone(&self) -> acc_processing_result_t
fn clone(&self) -> acc_processing_result_t
Returns a copy 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 acc_processing_result_t
impl Debug for acc_processing_result_t
impl Copy for acc_processing_result_t
Auto Trait Implementations§
impl Freeze for acc_processing_result_t
impl RefUnwindSafe for acc_processing_result_t
impl !Send for acc_processing_result_t
impl !Sync for acc_processing_result_t
impl Unpin for acc_processing_result_t
impl UnwindSafe for acc_processing_result_t
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