Move telemetry displayport init and cms device registering
[betaflight.git] / lib / main / MAVLink / common / mavlink_msg_global_vision_position_estimate.h
blobb2b75d7ef5143599c2a91ee802680826c034e672
1 // MESSAGE GLOBAL_VISION_POSITION_ESTIMATE PACKING
3 #define MAVLINK_MSG_ID_GLOBAL_VISION_POSITION_ESTIMATE 101
5 typedef struct __mavlink_global_vision_position_estimate_t
7 uint64_t usec; ///< Timestamp (microseconds, synced to UNIX time or since system boot)
8 float x; ///< Global X position
9 float y; ///< Global Y position
10 float z; ///< Global Z position
11 float roll; ///< Roll angle in rad
12 float pitch; ///< Pitch angle in rad
13 float yaw; ///< Yaw angle in rad
14 } mavlink_global_vision_position_estimate_t;
16 #define MAVLINK_MSG_ID_GLOBAL_VISION_POSITION_ESTIMATE_LEN 32
17 #define MAVLINK_MSG_ID_101_LEN 32
19 #define MAVLINK_MSG_ID_GLOBAL_VISION_POSITION_ESTIMATE_CRC 102
20 #define MAVLINK_MSG_ID_101_CRC 102
24 #define MAVLINK_MESSAGE_INFO_GLOBAL_VISION_POSITION_ESTIMATE { \
25 "GLOBAL_VISION_POSITION_ESTIMATE", \
26 7, \
27 { { "usec", NULL, MAVLINK_TYPE_UINT64_T, 0, 0, offsetof(mavlink_global_vision_position_estimate_t, usec) }, \
28 { "x", NULL, MAVLINK_TYPE_FLOAT, 0, 8, offsetof(mavlink_global_vision_position_estimate_t, x) }, \
29 { "y", NULL, MAVLINK_TYPE_FLOAT, 0, 12, offsetof(mavlink_global_vision_position_estimate_t, y) }, \
30 { "z", NULL, MAVLINK_TYPE_FLOAT, 0, 16, offsetof(mavlink_global_vision_position_estimate_t, z) }, \
31 { "roll", NULL, MAVLINK_TYPE_FLOAT, 0, 20, offsetof(mavlink_global_vision_position_estimate_t, roll) }, \
32 { "pitch", NULL, MAVLINK_TYPE_FLOAT, 0, 24, offsetof(mavlink_global_vision_position_estimate_t, pitch) }, \
33 { "yaw", NULL, MAVLINK_TYPE_FLOAT, 0, 28, offsetof(mavlink_global_vision_position_estimate_t, yaw) }, \
34 } \
38 /**
39 * @brief Pack a global_vision_position_estimate message
40 * @param system_id ID of this system
41 * @param component_id ID of this component (e.g. 200 for IMU)
42 * @param msg The MAVLink message to compress the data into
44 * @param usec Timestamp (microseconds, synced to UNIX time or since system boot)
45 * @param x Global X position
46 * @param y Global Y position
47 * @param z Global Z position
48 * @param roll Roll angle in rad
49 * @param pitch Pitch angle in rad
50 * @param yaw Yaw angle in rad
51 * @return length of the message in bytes (excluding serial stream start sign)
53 static inline uint16_t mavlink_msg_global_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_GLOBAL_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_GLOBAL_VISION_POSITION_ESTIMATE_LEN);
67 #else
68 mavlink_global_vision_position_estimate_t packet;
69 packet.usec = usec;
70 packet.x = x;
71 packet.y = y;
72 packet.z = z;
73 packet.roll = roll;
74 packet.pitch = pitch;
75 packet.yaw = yaw;
77 memcpy(_MAV_PAYLOAD_NON_CONST(msg), &packet, MAVLINK_MSG_ID_GLOBAL_VISION_POSITION_ESTIMATE_LEN);
78 #endif
80 msg->msgid = MAVLINK_MSG_ID_GLOBAL_VISION_POSITION_ESTIMATE;
81 #if MAVLINK_CRC_EXTRA
82 return mavlink_finalize_message(msg, system_id, component_id, MAVLINK_MSG_ID_GLOBAL_VISION_POSITION_ESTIMATE_LEN, MAVLINK_MSG_ID_GLOBAL_VISION_POSITION_ESTIMATE_CRC);
83 #else
84 return mavlink_finalize_message(msg, system_id, component_id, MAVLINK_MSG_ID_GLOBAL_VISION_POSITION_ESTIMATE_LEN);
85 #endif
88 /**
89 * @brief Pack a global_vision_position_estimate message on a channel
90 * @param system_id ID of this system
91 * @param component_id ID of this component (e.g. 200 for IMU)
92 * @param chan The MAVLink channel this message will be sent over
93 * @param msg The MAVLink message to compress the data into
94 * @param usec Timestamp (microseconds, synced to UNIX time or since system boot)
95 * @param x Global X position
96 * @param y Global Y position
97 * @param z Global Z position
98 * @param roll Roll angle in rad
99 * @param pitch Pitch angle in rad
100 * @param yaw Yaw angle in rad
101 * @return length of the message in bytes (excluding serial stream start sign)
103 static inline uint16_t mavlink_msg_global_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_GLOBAL_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_GLOBAL_VISION_POSITION_ESTIMATE_LEN);
118 #else
119 mavlink_global_vision_position_estimate_t packet;
120 packet.usec = usec;
121 packet.x = x;
122 packet.y = y;
123 packet.z = z;
124 packet.roll = roll;
125 packet.pitch = pitch;
126 packet.yaw = yaw;
128 memcpy(_MAV_PAYLOAD_NON_CONST(msg), &packet, MAVLINK_MSG_ID_GLOBAL_VISION_POSITION_ESTIMATE_LEN);
129 #endif
131 msg->msgid = MAVLINK_MSG_ID_GLOBAL_VISION_POSITION_ESTIMATE;
132 #if MAVLINK_CRC_EXTRA
133 return mavlink_finalize_message_chan(msg, system_id, component_id, chan, MAVLINK_MSG_ID_GLOBAL_VISION_POSITION_ESTIMATE_LEN, MAVLINK_MSG_ID_GLOBAL_VISION_POSITION_ESTIMATE_CRC);
134 #else
135 return mavlink_finalize_message_chan(msg, system_id, component_id, chan, MAVLINK_MSG_ID_GLOBAL_VISION_POSITION_ESTIMATE_LEN);
136 #endif
140 * @brief Encode a global_vision_position_estimate struct
142 * @param system_id ID of this system
143 * @param component_id ID of this component (e.g. 200 for IMU)
144 * @param msg The MAVLink message to compress the data into
145 * @param global_vision_position_estimate C-struct to read the message contents from
147 static inline uint16_t mavlink_msg_global_vision_position_estimate_encode(uint8_t system_id, uint8_t component_id, mavlink_message_t* msg, const mavlink_global_vision_position_estimate_t* global_vision_position_estimate)
149 return mavlink_msg_global_vision_position_estimate_pack(system_id, component_id, msg, global_vision_position_estimate->usec, global_vision_position_estimate->x, global_vision_position_estimate->y, global_vision_position_estimate->z, global_vision_position_estimate->roll, global_vision_position_estimate->pitch, global_vision_position_estimate->yaw);
153 * @brief Encode a global_vision_position_estimate struct on a channel
155 * @param system_id ID of this system
156 * @param component_id ID of this component (e.g. 200 for IMU)
157 * @param chan The MAVLink channel this message will be sent over
158 * @param msg The MAVLink message to compress the data into
159 * @param global_vision_position_estimate C-struct to read the message contents from
161 static inline uint16_t mavlink_msg_global_vision_position_estimate_encode_chan(uint8_t system_id, uint8_t component_id, uint8_t chan, mavlink_message_t* msg, const mavlink_global_vision_position_estimate_t* global_vision_position_estimate)
163 return mavlink_msg_global_vision_position_estimate_pack_chan(system_id, component_id, chan, msg, global_vision_position_estimate->usec, global_vision_position_estimate->x, global_vision_position_estimate->y, global_vision_position_estimate->z, global_vision_position_estimate->roll, global_vision_position_estimate->pitch, global_vision_position_estimate->yaw);
167 * @brief Send a global_vision_position_estimate message
168 * @param chan MAVLink channel to send the message
170 * @param usec Timestamp (microseconds, synced to UNIX time or since system boot)
171 * @param x Global X position
172 * @param y Global Y position
173 * @param z Global Z position
174 * @param roll Roll angle in rad
175 * @param pitch Pitch angle in rad
176 * @param yaw Yaw angle in rad
178 #ifdef MAVLINK_USE_CONVENIENCE_FUNCTIONS
180 static inline void mavlink_msg_global_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_GLOBAL_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_GLOBAL_VISION_POSITION_ESTIMATE, buf, MAVLINK_MSG_ID_GLOBAL_VISION_POSITION_ESTIMATE_LEN, MAVLINK_MSG_ID_GLOBAL_VISION_POSITION_ESTIMATE_CRC);
194 #else
195 _mav_finalize_message_chan_send(chan, MAVLINK_MSG_ID_GLOBAL_VISION_POSITION_ESTIMATE, buf, MAVLINK_MSG_ID_GLOBAL_VISION_POSITION_ESTIMATE_LEN);
196 #endif
197 #else
198 mavlink_global_vision_position_estimate_t packet;
199 packet.usec = usec;
200 packet.x = x;
201 packet.y = y;
202 packet.z = z;
203 packet.roll = roll;
204 packet.pitch = pitch;
205 packet.yaw = yaw;
207 #if MAVLINK_CRC_EXTRA
208 _mav_finalize_message_chan_send(chan, MAVLINK_MSG_ID_GLOBAL_VISION_POSITION_ESTIMATE, (const char *)&packet, MAVLINK_MSG_ID_GLOBAL_VISION_POSITION_ESTIMATE_LEN, MAVLINK_MSG_ID_GLOBAL_VISION_POSITION_ESTIMATE_CRC);
209 #else
210 _mav_finalize_message_chan_send(chan, MAVLINK_MSG_ID_GLOBAL_VISION_POSITION_ESTIMATE, (const char *)&packet, MAVLINK_MSG_ID_GLOBAL_VISION_POSITION_ESTIMATE_LEN);
211 #endif
212 #endif
215 #if MAVLINK_MSG_ID_GLOBAL_VISION_POSITION_ESTIMATE_LEN <= MAVLINK_MAX_PAYLOAD_LEN
217 This varient of _send() can be used to save stack space by re-using
218 memory from the receive buffer. The caller provides a
219 mavlink_message_t which is the size of a full mavlink message. This
220 is usually the receive buffer for the channel, and allows a reply to an
221 incoming message with minimum stack space usage.
223 static inline void mavlink_msg_global_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_GLOBAL_VISION_POSITION_ESTIMATE, buf, MAVLINK_MSG_ID_GLOBAL_VISION_POSITION_ESTIMATE_LEN, MAVLINK_MSG_ID_GLOBAL_VISION_POSITION_ESTIMATE_CRC);
237 #else
238 _mav_finalize_message_chan_send(chan, MAVLINK_MSG_ID_GLOBAL_VISION_POSITION_ESTIMATE, buf, MAVLINK_MSG_ID_GLOBAL_VISION_POSITION_ESTIMATE_LEN);
239 #endif
240 #else
241 mavlink_global_vision_position_estimate_t *packet = (mavlink_global_vision_position_estimate_t *)msgbuf;
242 packet->usec = usec;
243 packet->x = x;
244 packet->y = y;
245 packet->z = z;
246 packet->roll = roll;
247 packet->pitch = pitch;
248 packet->yaw = yaw;
250 #if MAVLINK_CRC_EXTRA
251 _mav_finalize_message_chan_send(chan, MAVLINK_MSG_ID_GLOBAL_VISION_POSITION_ESTIMATE, (const char *)packet, MAVLINK_MSG_ID_GLOBAL_VISION_POSITION_ESTIMATE_LEN, MAVLINK_MSG_ID_GLOBAL_VISION_POSITION_ESTIMATE_CRC);
252 #else
253 _mav_finalize_message_chan_send(chan, MAVLINK_MSG_ID_GLOBAL_VISION_POSITION_ESTIMATE, (const char *)packet, MAVLINK_MSG_ID_GLOBAL_VISION_POSITION_ESTIMATE_LEN);
254 #endif
255 #endif
257 #endif
259 #endif
261 // MESSAGE GLOBAL_VISION_POSITION_ESTIMATE UNPACKING
265 * @brief Get field usec from global_vision_position_estimate message
267 * @return Timestamp (microseconds, synced to UNIX time or since system boot)
269 static inline uint64_t mavlink_msg_global_vision_position_estimate_get_usec(const mavlink_message_t* msg)
271 return _MAV_RETURN_uint64_t(msg, 0);
275 * @brief Get field x from global_vision_position_estimate message
277 * @return Global X position
279 static inline float mavlink_msg_global_vision_position_estimate_get_x(const mavlink_message_t* msg)
281 return _MAV_RETURN_float(msg, 8);
285 * @brief Get field y from global_vision_position_estimate message
287 * @return Global Y position
289 static inline float mavlink_msg_global_vision_position_estimate_get_y(const mavlink_message_t* msg)
291 return _MAV_RETURN_float(msg, 12);
295 * @brief Get field z from global_vision_position_estimate message
297 * @return Global Z position
299 static inline float mavlink_msg_global_vision_position_estimate_get_z(const mavlink_message_t* msg)
301 return _MAV_RETURN_float(msg, 16);
305 * @brief Get field roll from global_vision_position_estimate message
307 * @return Roll angle in rad
309 static inline float mavlink_msg_global_vision_position_estimate_get_roll(const mavlink_message_t* msg)
311 return _MAV_RETURN_float(msg, 20);
315 * @brief Get field pitch from global_vision_position_estimate message
317 * @return Pitch angle in rad
319 static inline float mavlink_msg_global_vision_position_estimate_get_pitch(const mavlink_message_t* msg)
321 return _MAV_RETURN_float(msg, 24);
325 * @brief Get field yaw from global_vision_position_estimate message
327 * @return Yaw angle in rad
329 static inline float mavlink_msg_global_vision_position_estimate_get_yaw(const mavlink_message_t* msg)
331 return _MAV_RETURN_float(msg, 28);
335 * @brief Decode a global_vision_position_estimate message into a struct
337 * @param msg The message to decode
338 * @param global_vision_position_estimate C-struct to decode the message contents into
340 static inline void mavlink_msg_global_vision_position_estimate_decode(const mavlink_message_t* msg, mavlink_global_vision_position_estimate_t* global_vision_position_estimate)
342 #if MAVLINK_NEED_BYTE_SWAP
343 global_vision_position_estimate->usec = mavlink_msg_global_vision_position_estimate_get_usec(msg);
344 global_vision_position_estimate->x = mavlink_msg_global_vision_position_estimate_get_x(msg);
345 global_vision_position_estimate->y = mavlink_msg_global_vision_position_estimate_get_y(msg);
346 global_vision_position_estimate->z = mavlink_msg_global_vision_position_estimate_get_z(msg);
347 global_vision_position_estimate->roll = mavlink_msg_global_vision_position_estimate_get_roll(msg);
348 global_vision_position_estimate->pitch = mavlink_msg_global_vision_position_estimate_get_pitch(msg);
349 global_vision_position_estimate->yaw = mavlink_msg_global_vision_position_estimate_get_yaw(msg);
350 #else
351 memcpy(global_vision_position_estimate, _MAV_PAYLOAD(msg), MAVLINK_MSG_ID_GLOBAL_VISION_POSITION_ESTIMATE_LEN);
352 #endif