pub struct FW_SOARING_DATA_DATA {
Show 25 fields pub timestamp: u64, pub timestampModeChanged: u64, pub xW: f32, pub xR: f32, pub xLat: f32, pub xLon: f32, pub VarW: f32, pub VarR: f32, pub VarLat: f32, pub VarLon: f32, pub LoiterRadius: f32, pub LoiterDirection: f32, pub DistToSoarPoint: f32, pub vSinkExp: f32, pub z1_LocalUpdraftSpeed: f32, pub z2_DeltaRoll: f32, pub z1_exp: f32, pub z2_exp: f32, pub ThermalGSNorth: f32, pub ThermalGSEast: f32, pub TSE_dot: f32, pub DebugVar1: f32, pub DebugVar2: f32, pub ControlMode: u8, pub valid: u8,
}
Expand description

id: 8011 Fixed-wing soaring (i.e. thermal seeking) data.

Fields§

§timestamp: u64

Timestamp.

§timestampModeChanged: u64

Timestamp since last mode change.

§xW: f32

Thermal core updraft strength.

§xR: f32

Thermal radius.

§xLat: f32

Thermal center latitude.

§xLon: f32

Thermal center longitude.

§VarW: f32

Variance W.

§VarR: f32

Variance R.

§VarLat: f32

Variance Lat.

§VarLon: f32

Variance Lon.

§LoiterRadius: f32

Suggested loiter radius.

§LoiterDirection: f32

Suggested loiter direction.

§DistToSoarPoint: f32

Distance to soar point.

§vSinkExp: f32

Expected sink rate at current airspeed, roll and throttle.

§z1_LocalUpdraftSpeed: f32

Measurement / updraft speed at current/local airplane position.

§z2_DeltaRoll: f32

Measurement / roll angle tracking error.

§z1_exp: f32

Expected measurement 1.

§z2_exp: f32

Expected measurement 2.

§ThermalGSNorth: f32

Thermal drift (from estimator prediction step only).

§ThermalGSEast: f32

Thermal drift (from estimator prediction step only).

§TSE_dot: f32

Total specific energy change (filtered).

§DebugVar1: f32

Debug variable 1.

§DebugVar2: f32

Debug variable 2.

§ControlMode: u8

Control Mode [-].

§valid: u8

Data valid [-].

Implementations§

source§

impl FW_SOARING_DATA_DATA

source

pub const ENCODED_LEN: usize = 102usize

source

pub const DEFAULT: Self = _

Trait Implementations§

source§

impl Clone for FW_SOARING_DATA_DATA

source§

fn clone(&self) -> FW_SOARING_DATA_DATA

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 Debug for FW_SOARING_DATA_DATA

source§

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

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

impl Default for FW_SOARING_DATA_DATA

source§

fn default() -> Self

Returns the “default value” for a type. Read more
source§

impl<'de> Deserialize<'de> for FW_SOARING_DATA_DATA

source§

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 FW_SOARING_DATA_DATA

§

type Message = MavMessage

source§

const ID: u32 = 8_011u32

source§

const NAME: &'static str = "FW_SOARING_DATA"

source§

const EXTRA_CRC: u8 = 20u8

source§

const ENCODED_LEN: usize = 102usize

source§

fn deser(_version: MavlinkVersion, __input: &[u8]) -> Result<Self, ParserError>

source§

fn ser(&self, version: MavlinkVersion, bytes: &mut [u8]) -> usize

source§

impl PartialEq for FW_SOARING_DATA_DATA

source§

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

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

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

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl Serialize for FW_SOARING_DATA_DATA

source§

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>where __S: Serializer,

Serialize this value into the given Serde serializer. Read more
source§

impl StructuralPartialEq for FW_SOARING_DATA_DATA

Auto Trait Implementations§

Blanket Implementations§

source§

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

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

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

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere 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 Twhere 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> ToOwned for Twhere T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for Twhere 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 Twhere 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.
source§

impl<T> DeserializeOwned for Twhere T: for<'de> Deserialize<'de>,