pub struct POSITION_TARGET_LOCAL_NED_DATA {}
python_array_test
only.Expand description
id: 85 Reports the current commanded vehicle position, velocity, and acceleration as specified by the autopilot. This should match the commands sent in SET_POSITION_TARGET_LOCAL_NED if the vehicle is being controlled this way..
Fields§
§time_boot_ms: u32
Timestamp (time since system boot)..
x: f32
X Position in NED frame.
y: f32
Y Position in NED frame.
z: f32
Z Position in NED frame (note, altitude is negative in NED).
vx: f32
X velocity in NED frame.
vy: f32
Y velocity in NED frame.
vz: f32
Z velocity in NED frame.
afx: f32
X acceleration or force (if bit 10 of type_mask is set) in NED frame in meter / s^2 or N.
afy: f32
Y acceleration or force (if bit 10 of type_mask is set) in NED frame in meter / s^2 or N.
afz: f32
Z acceleration or force (if bit 10 of type_mask is set) in NED frame in meter / s^2 or N.
yaw: f32
yaw setpoint.
yaw_rate: f32
yaw rate setpoint.
type_mask: PositionTargetTypemask
Bitmap to indicate which dimensions should be ignored by the vehicle..
coordinate_frame: MavFrame
Valid options are: MAV_FRAME_LOCAL_NED = 1, MAV_FRAME_LOCAL_OFFSET_NED = 7, MAV_FRAME_BODY_NED = 8, MAV_FRAME_BODY_OFFSET_NED = 9.
Implementations§
Source§impl POSITION_TARGET_LOCAL_NED_DATA
impl POSITION_TARGET_LOCAL_NED_DATA
pub const ENCODED_LEN: usize = 51usize
pub const DEFAULT: Self
Trait Implementations§
Source§impl Clone for POSITION_TARGET_LOCAL_NED_DATA
impl Clone for POSITION_TARGET_LOCAL_NED_DATA
Source§fn clone(&self) -> POSITION_TARGET_LOCAL_NED_DATA
fn clone(&self) -> POSITION_TARGET_LOCAL_NED_DATA
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreSource§impl<'de> Deserialize<'de> for POSITION_TARGET_LOCAL_NED_DATA
impl<'de> Deserialize<'de> for POSITION_TARGET_LOCAL_NED_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>,
Source§impl MessageData for POSITION_TARGET_LOCAL_NED_DATA
impl MessageData for POSITION_TARGET_LOCAL_NED_DATA
const ID: u32 = 85u32
const NAME: &'static str = "POSITION_TARGET_LOCAL_NED"
const EXTRA_CRC: u8 = 140u8
const ENCODED_LEN: usize = 51usize
type Message = MavMessage
fn deser(_version: MavlinkVersion, __input: &[u8]) -> Result<Self, ParserError>
fn ser(&self, version: MavlinkVersion, bytes: &mut [u8]) -> usize
Source§impl PartialEq for POSITION_TARGET_LOCAL_NED_DATA
impl PartialEq for POSITION_TARGET_LOCAL_NED_DATA
Source§fn eq(&self, other: &POSITION_TARGET_LOCAL_NED_DATA) -> bool
fn eq(&self, other: &POSITION_TARGET_LOCAL_NED_DATA) -> bool
self
and other
values to be equal, and is used by ==
.