2 // MESSAGE VISION_POSITION_ESTIMATE PACKING
4 #define MAVLINK_MSG_ID_VISION_POSITION_ESTIMATE 102
7 typedef struct __mavlink_vision_position_estimate_t
{
8 uint64_t usec
; /*< Timestamp (microseconds, synced to UNIX time or since system boot)*/
9 float x
; /*< Global X position*/
10 float y
; /*< Global Y position*/
11 float z
; /*< Global Z position*/
12 float roll
; /*< Roll angle in rad*/
13 float pitch
; /*< Pitch angle in rad*/
14 float yaw
; /*< Yaw angle in rad*/
15 }) mavlink_vision_position_estimate_t
;
17 #define MAVLINK_MSG_ID_VISION_POSITION_ESTIMATE_LEN 32
18 #define MAVLINK_MSG_ID_VISION_POSITION_ESTIMATE_MIN_LEN 32
19 #define MAVLINK_MSG_ID_102_LEN 32
20 #define MAVLINK_MSG_ID_102_MIN_LEN 32
22 #define MAVLINK_MSG_ID_VISION_POSITION_ESTIMATE_CRC 158
23 #define MAVLINK_MSG_ID_102_CRC 158
27 #if MAVLINK_COMMAND_24BIT
28 #define MAVLINK_MESSAGE_INFO_VISION_POSITION_ESTIMATE { \
30 "VISION_POSITION_ESTIMATE", \
32 { { "usec", NULL, MAVLINK_TYPE_UINT64_T, 0, 0, offsetof(mavlink_vision_position_estimate_t, usec) }, \
33 { "x", NULL, MAVLINK_TYPE_FLOAT, 0, 8, offsetof(mavlink_vision_position_estimate_t, x) }, \
34 { "y", NULL, MAVLINK_TYPE_FLOAT, 0, 12, offsetof(mavlink_vision_position_estimate_t, y) }, \
35 { "z", NULL, MAVLINK_TYPE_FLOAT, 0, 16, offsetof(mavlink_vision_position_estimate_t, z) }, \
36 { "roll", NULL, MAVLINK_TYPE_FLOAT, 0, 20, offsetof(mavlink_vision_position_estimate_t, roll) }, \
37 { "pitch", NULL, MAVLINK_TYPE_FLOAT, 0, 24, offsetof(mavlink_vision_position_estimate_t, pitch) }, \
38 { "yaw", NULL, MAVLINK_TYPE_FLOAT, 0, 28, offsetof(mavlink_vision_position_estimate_t, yaw) }, \
42 #define MAVLINK_MESSAGE_INFO_VISION_POSITION_ESTIMATE { \
43 "VISION_POSITION_ESTIMATE", \
45 { { "usec", NULL, MAVLINK_TYPE_UINT64_T, 0, 0, offsetof(mavlink_vision_position_estimate_t, usec) }, \
46 { "x", NULL, MAVLINK_TYPE_FLOAT, 0, 8, offsetof(mavlink_vision_position_estimate_t, x) }, \
47 { "y", NULL, MAVLINK_TYPE_FLOAT, 0, 12, offsetof(mavlink_vision_position_estimate_t, y) }, \
48 { "z", NULL, MAVLINK_TYPE_FLOAT, 0, 16, offsetof(mavlink_vision_position_estimate_t, z) }, \
49 { "roll", NULL, MAVLINK_TYPE_FLOAT, 0, 20, offsetof(mavlink_vision_position_estimate_t, roll) }, \
50 { "pitch", NULL, MAVLINK_TYPE_FLOAT, 0, 24, offsetof(mavlink_vision_position_estimate_t, pitch) }, \
51 { "yaw", NULL, MAVLINK_TYPE_FLOAT, 0, 28, offsetof(mavlink_vision_position_estimate_t, yaw) }, \
57 * @brief Pack a vision_position_estimate message
58 * @param system_id ID of this system
59 * @param component_id ID of this component (e.g. 200 for IMU)
60 * @param msg The MAVLink message to compress the data into
62 * @param usec Timestamp (microseconds, synced to UNIX time or since system boot)
63 * @param x Global X position
64 * @param y Global Y position
65 * @param z Global Z position
66 * @param roll Roll angle in rad
67 * @param pitch Pitch angle in rad
68 * @param yaw Yaw angle in rad
69 * @return length of the message in bytes (excluding serial stream start sign)
71 static inline uint16_t mavlink_msg_vision_position_estimate_pack(uint8_t system_id
, uint8_t component_id
, mavlink_message_t
* msg
,
72 uint64_t usec
, float x
, float y
, float z
, float roll
, float pitch
, float yaw
)
74 #if MAVLINK_NEED_BYTE_SWAP || !MAVLINK_ALIGNED_FIELDS
75 char buf
[MAVLINK_MSG_ID_VISION_POSITION_ESTIMATE_LEN
];
76 _mav_put_uint64_t(buf
, 0, usec
);
77 _mav_put_float(buf
, 8, x
);
78 _mav_put_float(buf
, 12, y
);
79 _mav_put_float(buf
, 16, z
);
80 _mav_put_float(buf
, 20, roll
);
81 _mav_put_float(buf
, 24, pitch
);
82 _mav_put_float(buf
, 28, yaw
);
84 memcpy(_MAV_PAYLOAD_NON_CONST(msg
), buf
, MAVLINK_MSG_ID_VISION_POSITION_ESTIMATE_LEN
);
86 mavlink_vision_position_estimate_t packet
;
95 memcpy(_MAV_PAYLOAD_NON_CONST(msg
), &packet
, MAVLINK_MSG_ID_VISION_POSITION_ESTIMATE_LEN
);
98 msg
->msgid
= MAVLINK_MSG_ID_VISION_POSITION_ESTIMATE
;
99 return mavlink_finalize_message(msg
, system_id
, component_id
, MAVLINK_MSG_ID_VISION_POSITION_ESTIMATE_MIN_LEN
, MAVLINK_MSG_ID_VISION_POSITION_ESTIMATE_LEN
, MAVLINK_MSG_ID_VISION_POSITION_ESTIMATE_CRC
);
103 * @brief Pack a vision_position_estimate message on a channel
104 * @param system_id ID of this system
105 * @param component_id ID of this component (e.g. 200 for IMU)
106 * @param chan The MAVLink channel this message will be sent over
107 * @param msg The MAVLink message to compress the data into
108 * @param usec Timestamp (microseconds, synced to UNIX time or since system boot)
109 * @param x Global X position
110 * @param y Global Y position
111 * @param z Global Z position
112 * @param roll Roll angle in rad
113 * @param pitch Pitch angle in rad
114 * @param yaw Yaw angle in rad
115 * @return length of the message in bytes (excluding serial stream start sign)
117 static inline uint16_t mavlink_msg_vision_position_estimate_pack_chan(uint8_t system_id
, uint8_t component_id
, uint8_t chan
,
118 mavlink_message_t
* msg
,
119 uint64_t usec
,float x
,float y
,float z
,float roll
,float pitch
,float yaw
)
121 #if MAVLINK_NEED_BYTE_SWAP || !MAVLINK_ALIGNED_FIELDS
122 char buf
[MAVLINK_MSG_ID_VISION_POSITION_ESTIMATE_LEN
];
123 _mav_put_uint64_t(buf
, 0, usec
);
124 _mav_put_float(buf
, 8, x
);
125 _mav_put_float(buf
, 12, y
);
126 _mav_put_float(buf
, 16, z
);
127 _mav_put_float(buf
, 20, roll
);
128 _mav_put_float(buf
, 24, pitch
);
129 _mav_put_float(buf
, 28, yaw
);
131 memcpy(_MAV_PAYLOAD_NON_CONST(msg
), buf
, MAVLINK_MSG_ID_VISION_POSITION_ESTIMATE_LEN
);
133 mavlink_vision_position_estimate_t packet
;
139 packet
.pitch
= pitch
;
142 memcpy(_MAV_PAYLOAD_NON_CONST(msg
), &packet
, MAVLINK_MSG_ID_VISION_POSITION_ESTIMATE_LEN
);
145 msg
->msgid
= MAVLINK_MSG_ID_VISION_POSITION_ESTIMATE
;
146 return mavlink_finalize_message_chan(msg
, system_id
, component_id
, chan
, MAVLINK_MSG_ID_VISION_POSITION_ESTIMATE_MIN_LEN
, MAVLINK_MSG_ID_VISION_POSITION_ESTIMATE_LEN
, MAVLINK_MSG_ID_VISION_POSITION_ESTIMATE_CRC
);
150 * @brief Encode a vision_position_estimate struct
152 * @param system_id ID of this system
153 * @param component_id ID of this component (e.g. 200 for IMU)
154 * @param msg The MAVLink message to compress the data into
155 * @param vision_position_estimate C-struct to read the message contents from
157 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
)
159 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
);
163 * @brief Encode a vision_position_estimate struct on a channel
165 * @param system_id ID of this system
166 * @param component_id ID of this component (e.g. 200 for IMU)
167 * @param chan The MAVLink channel this message will be sent over
168 * @param msg The MAVLink message to compress the data into
169 * @param vision_position_estimate C-struct to read the message contents from
171 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
)
173 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
);
177 * @brief Send a vision_position_estimate message
178 * @param chan MAVLink channel to send the message
180 * @param usec Timestamp (microseconds, synced to UNIX time or since system boot)
181 * @param x Global X position
182 * @param y Global Y position
183 * @param z Global Z position
184 * @param roll Roll angle in rad
185 * @param pitch Pitch angle in rad
186 * @param yaw Yaw angle in rad
188 #ifdef MAVLINK_USE_CONVENIENCE_FUNCTIONS
190 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
)
192 #if MAVLINK_NEED_BYTE_SWAP || !MAVLINK_ALIGNED_FIELDS
193 char buf
[MAVLINK_MSG_ID_VISION_POSITION_ESTIMATE_LEN
];
194 _mav_put_uint64_t(buf
, 0, usec
);
195 _mav_put_float(buf
, 8, x
);
196 _mav_put_float(buf
, 12, y
);
197 _mav_put_float(buf
, 16, z
);
198 _mav_put_float(buf
, 20, roll
);
199 _mav_put_float(buf
, 24, pitch
);
200 _mav_put_float(buf
, 28, yaw
);
202 _mav_finalize_message_chan_send(chan
, MAVLINK_MSG_ID_VISION_POSITION_ESTIMATE
, buf
, MAVLINK_MSG_ID_VISION_POSITION_ESTIMATE_MIN_LEN
, MAVLINK_MSG_ID_VISION_POSITION_ESTIMATE_LEN
, MAVLINK_MSG_ID_VISION_POSITION_ESTIMATE_CRC
);
204 mavlink_vision_position_estimate_t packet
;
210 packet
.pitch
= pitch
;
213 _mav_finalize_message_chan_send(chan
, MAVLINK_MSG_ID_VISION_POSITION_ESTIMATE
, (const char *)&packet
, MAVLINK_MSG_ID_VISION_POSITION_ESTIMATE_MIN_LEN
, MAVLINK_MSG_ID_VISION_POSITION_ESTIMATE_LEN
, MAVLINK_MSG_ID_VISION_POSITION_ESTIMATE_CRC
);
218 * @brief Send a vision_position_estimate message
219 * @param chan MAVLink channel to send the message
220 * @param struct The MAVLink struct to serialize
222 static inline void mavlink_msg_vision_position_estimate_send_struct(mavlink_channel_t chan
, const mavlink_vision_position_estimate_t
* vision_position_estimate
)
224 #if MAVLINK_NEED_BYTE_SWAP || !MAVLINK_ALIGNED_FIELDS
225 mavlink_msg_vision_position_estimate_send(chan
, 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
);
227 _mav_finalize_message_chan_send(chan
, MAVLINK_MSG_ID_VISION_POSITION_ESTIMATE
, (const char *)vision_position_estimate
, MAVLINK_MSG_ID_VISION_POSITION_ESTIMATE_MIN_LEN
, MAVLINK_MSG_ID_VISION_POSITION_ESTIMATE_LEN
, MAVLINK_MSG_ID_VISION_POSITION_ESTIMATE_CRC
);
231 #if MAVLINK_MSG_ID_VISION_POSITION_ESTIMATE_LEN <= MAVLINK_MAX_PAYLOAD_LEN
233 This varient of _send() can be used to save stack space by re-using
234 memory from the receive buffer. The caller provides a
235 mavlink_message_t which is the size of a full mavlink message. This
236 is usually the receive buffer for the channel, and allows a reply to an
237 incoming message with minimum stack space usage.
239 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
)
241 #if MAVLINK_NEED_BYTE_SWAP || !MAVLINK_ALIGNED_FIELDS
242 char *buf
= (char *)msgbuf
;
243 _mav_put_uint64_t(buf
, 0, usec
);
244 _mav_put_float(buf
, 8, x
);
245 _mav_put_float(buf
, 12, y
);
246 _mav_put_float(buf
, 16, z
);
247 _mav_put_float(buf
, 20, roll
);
248 _mav_put_float(buf
, 24, pitch
);
249 _mav_put_float(buf
, 28, yaw
);
251 _mav_finalize_message_chan_send(chan
, MAVLINK_MSG_ID_VISION_POSITION_ESTIMATE
, buf
, MAVLINK_MSG_ID_VISION_POSITION_ESTIMATE_MIN_LEN
, MAVLINK_MSG_ID_VISION_POSITION_ESTIMATE_LEN
, MAVLINK_MSG_ID_VISION_POSITION_ESTIMATE_CRC
);
253 mavlink_vision_position_estimate_t
*packet
= (mavlink_vision_position_estimate_t
*)msgbuf
;
259 packet
->pitch
= pitch
;
262 _mav_finalize_message_chan_send(chan
, MAVLINK_MSG_ID_VISION_POSITION_ESTIMATE
, (const char *)packet
, MAVLINK_MSG_ID_VISION_POSITION_ESTIMATE_MIN_LEN
, MAVLINK_MSG_ID_VISION_POSITION_ESTIMATE_LEN
, MAVLINK_MSG_ID_VISION_POSITION_ESTIMATE_CRC
);
269 // MESSAGE VISION_POSITION_ESTIMATE UNPACKING
273 * @brief Get field usec from vision_position_estimate message
275 * @return Timestamp (microseconds, synced to UNIX time or since system boot)
277 static inline uint64_t mavlink_msg_vision_position_estimate_get_usec(const mavlink_message_t
* msg
)
279 return _MAV_RETURN_uint64_t(msg
, 0);
283 * @brief Get field x from vision_position_estimate message
285 * @return Global X position
287 static inline float mavlink_msg_vision_position_estimate_get_x(const mavlink_message_t
* msg
)
289 return _MAV_RETURN_float(msg
, 8);
293 * @brief Get field y from vision_position_estimate message
295 * @return Global Y position
297 static inline float mavlink_msg_vision_position_estimate_get_y(const mavlink_message_t
* msg
)
299 return _MAV_RETURN_float(msg
, 12);
303 * @brief Get field z from vision_position_estimate message
305 * @return Global Z position
307 static inline float mavlink_msg_vision_position_estimate_get_z(const mavlink_message_t
* msg
)
309 return _MAV_RETURN_float(msg
, 16);
313 * @brief Get field roll from vision_position_estimate message
315 * @return Roll angle in rad
317 static inline float mavlink_msg_vision_position_estimate_get_roll(const mavlink_message_t
* msg
)
319 return _MAV_RETURN_float(msg
, 20);
323 * @brief Get field pitch from vision_position_estimate message
325 * @return Pitch angle in rad
327 static inline float mavlink_msg_vision_position_estimate_get_pitch(const mavlink_message_t
* msg
)
329 return _MAV_RETURN_float(msg
, 24);
333 * @brief Get field yaw from vision_position_estimate message
335 * @return Yaw angle in rad
337 static inline float mavlink_msg_vision_position_estimate_get_yaw(const mavlink_message_t
* msg
)
339 return _MAV_RETURN_float(msg
, 28);
343 * @brief Decode a vision_position_estimate message into a struct
345 * @param msg The message to decode
346 * @param vision_position_estimate C-struct to decode the message contents into
348 static inline void mavlink_msg_vision_position_estimate_decode(const mavlink_message_t
* msg
, mavlink_vision_position_estimate_t
* vision_position_estimate
)
350 #if MAVLINK_NEED_BYTE_SWAP || !MAVLINK_ALIGNED_FIELDS
351 vision_position_estimate
->usec
= mavlink_msg_vision_position_estimate_get_usec(msg
);
352 vision_position_estimate
->x
= mavlink_msg_vision_position_estimate_get_x(msg
);
353 vision_position_estimate
->y
= mavlink_msg_vision_position_estimate_get_y(msg
);
354 vision_position_estimate
->z
= mavlink_msg_vision_position_estimate_get_z(msg
);
355 vision_position_estimate
->roll
= mavlink_msg_vision_position_estimate_get_roll(msg
);
356 vision_position_estimate
->pitch
= mavlink_msg_vision_position_estimate_get_pitch(msg
);
357 vision_position_estimate
->yaw
= mavlink_msg_vision_position_estimate_get_yaw(msg
);
359 uint8_t len
= msg
->len
< MAVLINK_MSG_ID_VISION_POSITION_ESTIMATE_LEN
? msg
->len
: MAVLINK_MSG_ID_VISION_POSITION_ESTIMATE_LEN
;
360 memset(vision_position_estimate
, 0, MAVLINK_MSG_ID_VISION_POSITION_ESTIMATE_LEN
);
361 memcpy(vision_position_estimate
, _MAV_PAYLOAD(msg
), len
);