pub struct AHRS3_DATA {
pub roll: f32,
pub pitch: f32,
pub yaw: f32,
pub altitude: f32,
pub lat: i32,
pub lng: i32,
pub v1: f32,
pub v2: f32,
pub v3: f32,
pub v4: f32,
}Available on crate feature
storm32 only.Expand description
Status of third AHRS filter if available. This is for ANU research group (Ali and Sean).
ID: 182
Fields§
§roll: f32Roll angle.
pitch: f32Pitch angle.
yaw: f32Yaw angle.
altitude: f32Altitude (MSL).
lat: i32Latitude.
lng: i32Longitude.
v1: f32Test variable1.
v2: f32Test variable2.
v3: f32Test variable3.
v4: f32Test variable4.
Implementations§
Source§impl AHRS3_DATA
impl AHRS3_DATA
pub const ENCODED_LEN: usize = 40usize
pub const DEFAULT: Self
Trait Implementations§
Source§impl Clone for AHRS3_DATA
impl Clone for AHRS3_DATA
Source§fn clone(&self) -> AHRS3_DATA
fn clone(&self) -> AHRS3_DATA
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 AHRS3_DATA
impl Debug for AHRS3_DATA
Source§impl Default for AHRS3_DATA
impl Default for AHRS3_DATA
Source§impl<'de> Deserialize<'de> for AHRS3_DATA
impl<'de> Deserialize<'de> for AHRS3_DATA
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl MessageData for AHRS3_DATA
impl MessageData for AHRS3_DATA
Source§impl PartialEq for AHRS3_DATA
impl PartialEq for AHRS3_DATA
Source§impl Serialize for AHRS3_DATA
impl Serialize for AHRS3_DATA
impl StructuralPartialEq for AHRS3_DATA
Auto Trait Implementations§
impl Freeze for AHRS3_DATA
impl RefUnwindSafe for AHRS3_DATA
impl Send for AHRS3_DATA
impl Sync for AHRS3_DATA
impl Unpin for AHRS3_DATA
impl UnwindSafe for AHRS3_DATA
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