3 #define MAVLINK_MSG_ID_VISION_POSITION_ESTIMATE 102
16 #define MAVLINK_MSG_ID_VISION_POSITION_ESTIMATE_LEN 32
17 #define MAVLINK_MSG_ID_102_LEN 32
19 #define MAVLINK_MSG_ID_VISION_POSITION_ESTIMATE_CRC 158
20 #define MAVLINK_MSG_ID_102_CRC 158
24 #define MAVLINK_MESSAGE_INFO_VISION_POSITION_ESTIMATE { \
25 "VISION_POSITION_ESTIMATE", \
27 { { "usec", NULL, MAVLINK_TYPE_UINT64_T, 0, 0, offsetof(mavlink_vision_position_estimate_t, usec) }, \
28 { "x", NULL, MAVLINK_TYPE_FLOAT, 0, 8, offsetof(mavlink_vision_position_estimate_t, x) }, \
29 { "y", NULL, MAVLINK_TYPE_FLOAT, 0, 12, offsetof(mavlink_vision_position_estimate_t, y) }, \
30 { "z", NULL, MAVLINK_TYPE_FLOAT, 0, 16, offsetof(mavlink_vision_position_estimate_t, z) }, \
31 { "roll", NULL, MAVLINK_TYPE_FLOAT, 0, 20, offsetof(mavlink_vision_position_estimate_t, roll) }, \
32 { "pitch", NULL, MAVLINK_TYPE_FLOAT, 0, 24, offsetof(mavlink_vision_position_estimate_t, pitch) }, \
33 { "yaw", NULL, MAVLINK_TYPE_FLOAT, 0, 28, offsetof(mavlink_vision_position_estimate_t, yaw) }, \
53 static inline uint16_t mavlink_msg_vision_position_estimate_pack(uint8_t system_id, uint8_t component_id, mavlink_message_t* msg,
54 uint64_t usec,
float x,
float y,
float z,
float roll,
float pitch,
float yaw)
56 #if MAVLINK_NEED_BYTE_SWAP || !MAVLINK_ALIGNED_FIELDS
57 char buf[MAVLINK_MSG_ID_VISION_POSITION_ESTIMATE_LEN];
58 _mav_put_uint64_t(buf, 0, usec);
59 _mav_put_float(buf, 8, x);
60 _mav_put_float(buf, 12, y);
61 _mav_put_float(buf, 16, z);
62 _mav_put_float(buf, 20, roll);
63 _mav_put_float(buf, 24, pitch);
64 _mav_put_float(buf, 28, yaw);
66 memcpy(_MAV_PAYLOAD_NON_CONST(msg), buf, MAVLINK_MSG_ID_VISION_POSITION_ESTIMATE_LEN);
77 memcpy(_MAV_PAYLOAD_NON_CONST(msg), &packet, MAVLINK_MSG_ID_VISION_POSITION_ESTIMATE_LEN);
80 msg->msgid = MAVLINK_MSG_ID_VISION_POSITION_ESTIMATE;
82 return mavlink_finalize_message(msg, system_id, component_id, MAVLINK_MSG_ID_VISION_POSITION_ESTIMATE_LEN, MAVLINK_MSG_ID_VISION_POSITION_ESTIMATE_CRC);
84 return mavlink_finalize_message(msg, system_id, component_id, MAVLINK_MSG_ID_VISION_POSITION_ESTIMATE_LEN);
103 static inline uint16_t mavlink_msg_vision_position_estimate_pack_chan(uint8_t system_id, uint8_t component_id, uint8_t chan,
104 mavlink_message_t* msg,
105 uint64_t usec,
float x,
float y,
float z,
float roll,
float pitch,
float yaw)
107 #if MAVLINK_NEED_BYTE_SWAP || !MAVLINK_ALIGNED_FIELDS
108 char buf[MAVLINK_MSG_ID_VISION_POSITION_ESTIMATE_LEN];
109 _mav_put_uint64_t(buf, 0, usec);
110 _mav_put_float(buf, 8, x);
111 _mav_put_float(buf, 12, y);
112 _mav_put_float(buf, 16, z);
113 _mav_put_float(buf, 20, roll);
114 _mav_put_float(buf, 24, pitch);
115 _mav_put_float(buf, 28, yaw);
117 memcpy(_MAV_PAYLOAD_NON_CONST(msg), buf, MAVLINK_MSG_ID_VISION_POSITION_ESTIMATE_LEN);
125 packet.
pitch = pitch;
128 memcpy(_MAV_PAYLOAD_NON_CONST(msg), &packet, MAVLINK_MSG_ID_VISION_POSITION_ESTIMATE_LEN);
131 msg->msgid = MAVLINK_MSG_ID_VISION_POSITION_ESTIMATE;
132 #if MAVLINK_CRC_EXTRA
133 return mavlink_finalize_message_chan(msg, system_id, component_id, chan, MAVLINK_MSG_ID_VISION_POSITION_ESTIMATE_LEN, MAVLINK_MSG_ID_VISION_POSITION_ESTIMATE_CRC);
135 return mavlink_finalize_message_chan(msg, system_id, component_id, chan, MAVLINK_MSG_ID_VISION_POSITION_ESTIMATE_LEN);
147 static inline uint16_t mavlink_msg_vision_position_estimate_encode(uint8_t system_id, uint8_t component_id, mavlink_message_t* msg,
const mavlink_vision_position_estimate_t* vision_position_estimate)
149 return mavlink_msg_vision_position_estimate_pack(system_id, component_id, msg, vision_position_estimate->
usec, vision_position_estimate->
x, vision_position_estimate->
y, vision_position_estimate->
z, vision_position_estimate->
roll, vision_position_estimate->
pitch, vision_position_estimate->
yaw);
161 static inline uint16_t mavlink_msg_vision_position_estimate_encode_chan(uint8_t system_id, uint8_t component_id, uint8_t chan, mavlink_message_t* msg,
const mavlink_vision_position_estimate_t* vision_position_estimate)
163 return mavlink_msg_vision_position_estimate_pack_chan(system_id, component_id, chan, msg, vision_position_estimate->
usec, vision_position_estimate->
x, vision_position_estimate->
y, vision_position_estimate->
z, vision_position_estimate->
roll, vision_position_estimate->
pitch, vision_position_estimate->
yaw);
178 #ifdef MAVLINK_USE_CONVENIENCE_FUNCTIONS
180 static inline void mavlink_msg_vision_position_estimate_send(mavlink_channel_t chan, uint64_t usec,
float x,
float y,
float z,
float roll,
float pitch,
float yaw)
182 #if MAVLINK_NEED_BYTE_SWAP || !MAVLINK_ALIGNED_FIELDS
183 char buf[MAVLINK_MSG_ID_VISION_POSITION_ESTIMATE_LEN];
184 _mav_put_uint64_t(buf, 0, usec);
185 _mav_put_float(buf, 8, x);
186 _mav_put_float(buf, 12, y);
187 _mav_put_float(buf, 16, z);
188 _mav_put_float(buf, 20, roll);
189 _mav_put_float(buf, 24, pitch);
190 _mav_put_float(buf, 28, yaw);
192 #if MAVLINK_CRC_EXTRA
193 _mav_finalize_message_chan_send(chan, MAVLINK_MSG_ID_VISION_POSITION_ESTIMATE, buf, MAVLINK_MSG_ID_VISION_POSITION_ESTIMATE_LEN, MAVLINK_MSG_ID_VISION_POSITION_ESTIMATE_CRC);
195 _mav_finalize_message_chan_send(chan, MAVLINK_MSG_ID_VISION_POSITION_ESTIMATE, buf, MAVLINK_MSG_ID_VISION_POSITION_ESTIMATE_LEN);
204 packet.
pitch = pitch;
207 #if MAVLINK_CRC_EXTRA
208 _mav_finalize_message_chan_send(chan, MAVLINK_MSG_ID_VISION_POSITION_ESTIMATE, (
const char *)&packet, MAVLINK_MSG_ID_VISION_POSITION_ESTIMATE_LEN, MAVLINK_MSG_ID_VISION_POSITION_ESTIMATE_CRC);
210 _mav_finalize_message_chan_send(chan, MAVLINK_MSG_ID_VISION_POSITION_ESTIMATE, (
const char *)&packet, MAVLINK_MSG_ID_VISION_POSITION_ESTIMATE_LEN);
215 #if MAVLINK_MSG_ID_VISION_POSITION_ESTIMATE_LEN <= MAVLINK_MAX_PAYLOAD_LEN
223 static inline void mavlink_msg_vision_position_estimate_send_buf(mavlink_message_t *msgbuf, mavlink_channel_t chan, uint64_t usec,
float x,
float y,
float z,
float roll,
float pitch,
float yaw)
225 #if MAVLINK_NEED_BYTE_SWAP || !MAVLINK_ALIGNED_FIELDS
226 char *buf = (
char *)msgbuf;
227 _mav_put_uint64_t(buf, 0, usec);
228 _mav_put_float(buf, 8, x);
229 _mav_put_float(buf, 12, y);
230 _mav_put_float(buf, 16, z);
231 _mav_put_float(buf, 20, roll);
232 _mav_put_float(buf, 24, pitch);
233 _mav_put_float(buf, 28, yaw);
235 #if MAVLINK_CRC_EXTRA
236 _mav_finalize_message_chan_send(chan, MAVLINK_MSG_ID_VISION_POSITION_ESTIMATE, buf, MAVLINK_MSG_ID_VISION_POSITION_ESTIMATE_LEN, MAVLINK_MSG_ID_VISION_POSITION_ESTIMATE_CRC);
238 _mav_finalize_message_chan_send(chan, MAVLINK_MSG_ID_VISION_POSITION_ESTIMATE, buf, MAVLINK_MSG_ID_VISION_POSITION_ESTIMATE_LEN);
247 packet->
pitch = pitch;
250 #if MAVLINK_CRC_EXTRA
251 _mav_finalize_message_chan_send(chan, MAVLINK_MSG_ID_VISION_POSITION_ESTIMATE, (
const char *)packet, MAVLINK_MSG_ID_VISION_POSITION_ESTIMATE_LEN, MAVLINK_MSG_ID_VISION_POSITION_ESTIMATE_CRC);
253 _mav_finalize_message_chan_send(chan, MAVLINK_MSG_ID_VISION_POSITION_ESTIMATE, (
const char *)packet, MAVLINK_MSG_ID_VISION_POSITION_ESTIMATE_LEN);
269 static inline uint64_t mavlink_msg_vision_position_estimate_get_usec(
const mavlink_message_t* msg)
271 return _MAV_RETURN_uint64_t(msg, 0);
279 static inline float mavlink_msg_vision_position_estimate_get_x(
const mavlink_message_t* msg)
281 return _MAV_RETURN_float(msg, 8);
289 static inline float mavlink_msg_vision_position_estimate_get_y(
const mavlink_message_t* msg)
291 return _MAV_RETURN_float(msg, 12);
299 static inline float mavlink_msg_vision_position_estimate_get_z(
const mavlink_message_t* msg)
301 return _MAV_RETURN_float(msg, 16);
309 static inline float mavlink_msg_vision_position_estimate_get_roll(
const mavlink_message_t* msg)
311 return _MAV_RETURN_float(msg, 20);
319 static inline float mavlink_msg_vision_position_estimate_get_pitch(
const mavlink_message_t* msg)
321 return _MAV_RETURN_float(msg, 24);
329 static inline float mavlink_msg_vision_position_estimate_get_yaw(
const mavlink_message_t* msg)
331 return _MAV_RETURN_float(msg, 28);
342 #if MAVLINK_NEED_BYTE_SWAP
343 vision_position_estimate->
usec = mavlink_msg_vision_position_estimate_get_usec(msg);
344 vision_position_estimate->
x = mavlink_msg_vision_position_estimate_get_x(msg);
345 vision_position_estimate->
y = mavlink_msg_vision_position_estimate_get_y(msg);
346 vision_position_estimate->
z = mavlink_msg_vision_position_estimate_get_z(msg);
347 vision_position_estimate->
roll = mavlink_msg_vision_position_estimate_get_roll(msg);
348 vision_position_estimate->
pitch = mavlink_msg_vision_position_estimate_get_pitch(msg);
349 vision_position_estimate->
yaw = mavlink_msg_vision_position_estimate_get_yaw(msg);
351 memcpy(vision_position_estimate, _MAV_PAYLOAD(msg), MAVLINK_MSG_ID_VISION_POSITION_ESTIMATE_LEN);
uint64_t usec
Timestamp (microseconds, synced to UNIX time or since system boot)
Definition: mavlink_msg_vision_position_estimate.h:7
Definition: mavlink_msg_vision_position_estimate.h:5
float yaw
Yaw angle in rad.
Definition: mavlink_msg_vision_position_estimate.h:13
float z
Global Z position.
Definition: mavlink_msg_vision_position_estimate.h:10
float pitch
Pitch angle in rad.
Definition: mavlink_msg_vision_position_estimate.h:12
float roll
Roll angle in rad.
Definition: mavlink_msg_vision_position_estimate.h:11
float y
Global Y position.
Definition: mavlink_msg_vision_position_estimate.h:9
float x
Global X position.
Definition: mavlink_msg_vision_position_estimate.h:8