pub struct AUTOPILOT_STATE_FOR_GIMBAL_DEVICE_DATA {
Show 13 fields pub time_boot_us: u64, pub q: [f32; 4], pub q_estimated_delay_us: u32, pub vx: f32, pub vy: f32, pub vz: f32, pub v_estimated_delay_us: u32, pub feed_forward_angular_velocity_z: f32, pub estimator_status: EstimatorStatusFlags, pub target_system: u8, pub target_component: u8, pub landed_state: MavLandedState, pub angular_velocity_z: f32,
}
Expand description

id: 286 Low level message containing autopilot state relevant for a gimbal device. This message is to be sent from the autopilot to the gimbal device component. The data of this message are for the gimbal device’s estimator corrections, in particular horizon compensation, as well as indicates autopilot control intentions, e.g. feed forward angular control in the z-axis..

Fields§

§time_boot_us: u64

Timestamp (time since system boot)..

§q: [f32; 4]

Quaternion components of autopilot attitude: w, x, y, z (1 0 0 0 is the null-rotation, Hamilton convention)..

§q_estimated_delay_us: u32

Estimated delay of the attitude data. 0 if unknown..

§vx: f32

X Speed in NED (North, East, Down). NAN if unknown..

§vy: f32

Y Speed in NED (North, East, Down). NAN if unknown..

§vz: f32

Z Speed in NED (North, East, Down). NAN if unknown..

§v_estimated_delay_us: u32

Estimated delay of the speed data. 0 if unknown..

§feed_forward_angular_velocity_z: f32

Feed forward Z component of angular velocity (positive: yawing to the right). NaN to be ignored. This is to indicate if the autopilot is actively yawing..

§estimator_status: EstimatorStatusFlags

Bitmap indicating which estimator outputs are valid..

§target_system: u8

System ID.

§target_component: u8

Component ID.

§landed_state: MavLandedState

The landed state. Is set to MAV_LANDED_STATE_UNDEFINED if landed state is unknown..

§angular_velocity_z: f32

Z component of angular velocity in NED (North, East, Down). NaN if unknown..

Implementations§

Trait Implementations§

source§

impl Clone for AUTOPILOT_STATE_FOR_GIMBAL_DEVICE_DATA

source§

fn clone(&self) -> AUTOPILOT_STATE_FOR_GIMBAL_DEVICE_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 AUTOPILOT_STATE_FOR_GIMBAL_DEVICE_DATA

source§

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

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

impl Default for AUTOPILOT_STATE_FOR_GIMBAL_DEVICE_DATA

source§

fn default() -> Self

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

impl<'de> Deserialize<'de> for AUTOPILOT_STATE_FOR_GIMBAL_DEVICE_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 AUTOPILOT_STATE_FOR_GIMBAL_DEVICE_DATA

§

type Message = MavMessage

source§

const ID: u32 = 286u32

source§

const NAME: &'static str = "AUTOPILOT_STATE_FOR_GIMBAL_DEVICE"

source§

const EXTRA_CRC: u8 = 210u8

source§

const ENCODED_LEN: usize = 57usize

source§

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

source§

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

source§

impl PartialEq for AUTOPILOT_STATE_FOR_GIMBAL_DEVICE_DATA

source§

fn eq(&self, other: &AUTOPILOT_STATE_FOR_GIMBAL_DEVICE_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 AUTOPILOT_STATE_FOR_GIMBAL_DEVICE_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 AUTOPILOT_STATE_FOR_GIMBAL_DEVICE_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>,