4#define MAVLINK_MSG_ID_GLOBAL_POSITION_INT 33
7typedef struct __mavlink_global_position_int_t {
17}) mavlink_global_position_int_t;
19#define MAVLINK_MSG_ID_GLOBAL_POSITION_INT_LEN 28
20#define MAVLINK_MSG_ID_GLOBAL_POSITION_INT_MIN_LEN 28
21#define MAVLINK_MSG_ID_33_LEN 28
22#define MAVLINK_MSG_ID_33_MIN_LEN 28
24#define MAVLINK_MSG_ID_GLOBAL_POSITION_INT_CRC 104
25#define MAVLINK_MSG_ID_33_CRC 104
29#if MAVLINK_COMMAND_24BIT
30#define MAVLINK_MESSAGE_INFO_GLOBAL_POSITION_INT { \
32 "GLOBAL_POSITION_INT", \
34 { { "time_boot_ms", NULL, MAVLINK_TYPE_UINT32_T, 0, 0, offsetof(mavlink_global_position_int_t, time_boot_ms) }, \
35 { "lat", NULL, MAVLINK_TYPE_INT32_T, 0, 4, offsetof(mavlink_global_position_int_t, lat) }, \
36 { "lon", NULL, MAVLINK_TYPE_INT32_T, 0, 8, offsetof(mavlink_global_position_int_t, lon) }, \
37 { "alt", NULL, MAVLINK_TYPE_INT32_T, 0, 12, offsetof(mavlink_global_position_int_t, alt) }, \
38 { "relative_alt", NULL, MAVLINK_TYPE_INT32_T, 0, 16, offsetof(mavlink_global_position_int_t, relative_alt) }, \
39 { "vx", NULL, MAVLINK_TYPE_INT16_T, 0, 20, offsetof(mavlink_global_position_int_t, vx) }, \
40 { "vy", NULL, MAVLINK_TYPE_INT16_T, 0, 22, offsetof(mavlink_global_position_int_t, vy) }, \
41 { "vz", NULL, MAVLINK_TYPE_INT16_T, 0, 24, offsetof(mavlink_global_position_int_t, vz) }, \
42 { "hdg", NULL, MAVLINK_TYPE_UINT16_T, 0, 26, offsetof(mavlink_global_position_int_t, hdg) }, \
46#define MAVLINK_MESSAGE_INFO_GLOBAL_POSITION_INT { \
47 "GLOBAL_POSITION_INT", \
49 { { "time_boot_ms", NULL, MAVLINK_TYPE_UINT32_T, 0, 0, offsetof(mavlink_global_position_int_t, time_boot_ms) }, \
50 { "lat", NULL, MAVLINK_TYPE_INT32_T, 0, 4, offsetof(mavlink_global_position_int_t, lat) }, \
51 { "lon", NULL, MAVLINK_TYPE_INT32_T, 0, 8, offsetof(mavlink_global_position_int_t, lon) }, \
52 { "alt", NULL, MAVLINK_TYPE_INT32_T, 0, 12, offsetof(mavlink_global_position_int_t, alt) }, \
53 { "relative_alt", NULL, MAVLINK_TYPE_INT32_T, 0, 16, offsetof(mavlink_global_position_int_t, relative_alt) }, \
54 { "vx", NULL, MAVLINK_TYPE_INT16_T, 0, 20, offsetof(mavlink_global_position_int_t, vx) }, \
55 { "vy", NULL, MAVLINK_TYPE_INT16_T, 0, 22, offsetof(mavlink_global_position_int_t, vy) }, \
56 { "vz", NULL, MAVLINK_TYPE_INT16_T, 0, 24, offsetof(mavlink_global_position_int_t, vz) }, \
57 { "hdg", NULL, MAVLINK_TYPE_UINT16_T, 0, 26, offsetof(mavlink_global_position_int_t, hdg) }, \
79static inline uint16_t mavlink_msg_global_position_int_pack(uint8_t system_id, uint8_t component_id, mavlink_message_t* msg,
80 uint32_t time_boot_ms, int32_t lat, int32_t lon, int32_t alt, int32_t relative_alt, int16_t vx, int16_t vy, int16_t vz, uint16_t hdg)
82#if MAVLINK_NEED_BYTE_SWAP || !MAVLINK_ALIGNED_FIELDS
83 char buf[MAVLINK_MSG_ID_GLOBAL_POSITION_INT_LEN];
84 _mav_put_uint32_t(buf, 0, time_boot_ms);
85 _mav_put_int32_t(buf, 4, lat);
86 _mav_put_int32_t(buf, 8, lon);
87 _mav_put_int32_t(buf, 12, alt);
88 _mav_put_int32_t(buf, 16, relative_alt);
89 _mav_put_int16_t(buf, 20, vx);
90 _mav_put_int16_t(buf, 22, vy);
91 _mav_put_int16_t(buf, 24, vz);
92 _mav_put_uint16_t(buf, 26, hdg);
94 memcpy(_MAV_PAYLOAD_NON_CONST(msg), buf, MAVLINK_MSG_ID_GLOBAL_POSITION_INT_LEN);
96 mavlink_global_position_int_t packet;
97 packet.time_boot_ms = time_boot_ms;
101 packet.relative_alt = relative_alt;
107 memcpy(_MAV_PAYLOAD_NON_CONST(msg), &packet, MAVLINK_MSG_ID_GLOBAL_POSITION_INT_LEN);
110 msg->msgid = MAVLINK_MSG_ID_GLOBAL_POSITION_INT;
111 return mavlink_finalize_message(msg, system_id, component_id, MAVLINK_MSG_ID_GLOBAL_POSITION_INT_MIN_LEN, MAVLINK_MSG_ID_GLOBAL_POSITION_INT_LEN, MAVLINK_MSG_ID_GLOBAL_POSITION_INT_CRC);
131static inline uint16_t mavlink_msg_global_position_int_pack_chan(uint8_t system_id, uint8_t component_id, uint8_t chan,
132 mavlink_message_t* msg,
133 uint32_t time_boot_ms,int32_t lat,int32_t lon,int32_t alt,int32_t relative_alt,int16_t vx,int16_t vy,int16_t vz,uint16_t hdg)
135#if MAVLINK_NEED_BYTE_SWAP || !MAVLINK_ALIGNED_FIELDS
136 char buf[MAVLINK_MSG_ID_GLOBAL_POSITION_INT_LEN];
137 _mav_put_uint32_t(buf, 0, time_boot_ms);
138 _mav_put_int32_t(buf, 4, lat);
139 _mav_put_int32_t(buf, 8, lon);
140 _mav_put_int32_t(buf, 12, alt);
141 _mav_put_int32_t(buf, 16, relative_alt);
142 _mav_put_int16_t(buf, 20, vx);
143 _mav_put_int16_t(buf, 22, vy);
144 _mav_put_int16_t(buf, 24, vz);
145 _mav_put_uint16_t(buf, 26, hdg);
147 memcpy(_MAV_PAYLOAD_NON_CONST(msg), buf, MAVLINK_MSG_ID_GLOBAL_POSITION_INT_LEN);
149 mavlink_global_position_int_t packet;
150 packet.time_boot_ms = time_boot_ms;
154 packet.relative_alt = relative_alt;
160 memcpy(_MAV_PAYLOAD_NON_CONST(msg), &packet, MAVLINK_MSG_ID_GLOBAL_POSITION_INT_LEN);
163 msg->msgid = MAVLINK_MSG_ID_GLOBAL_POSITION_INT;
164 return mavlink_finalize_message_chan(msg, system_id, component_id, chan, MAVLINK_MSG_ID_GLOBAL_POSITION_INT_MIN_LEN, MAVLINK_MSG_ID_GLOBAL_POSITION_INT_LEN, MAVLINK_MSG_ID_GLOBAL_POSITION_INT_CRC);
175static inline uint16_t mavlink_msg_global_position_int_encode(uint8_t system_id, uint8_t component_id, mavlink_message_t* msg,
const mavlink_global_position_int_t* global_position_int)
177 return mavlink_msg_global_position_int_pack(system_id, component_id, msg, global_position_int->time_boot_ms, global_position_int->lat, global_position_int->lon, global_position_int->alt, global_position_int->relative_alt, global_position_int->vx, global_position_int->vy, global_position_int->vz, global_position_int->hdg);
189static inline uint16_t mavlink_msg_global_position_int_encode_chan(uint8_t system_id, uint8_t component_id, uint8_t chan, mavlink_message_t* msg,
const mavlink_global_position_int_t* global_position_int)
191 return mavlink_msg_global_position_int_pack_chan(system_id, component_id, chan, msg, global_position_int->time_boot_ms, global_position_int->lat, global_position_int->lon, global_position_int->alt, global_position_int->relative_alt, global_position_int->vx, global_position_int->vy, global_position_int->vz, global_position_int->hdg);
208#ifdef MAVLINK_USE_CONVENIENCE_FUNCTIONS
210static inline void mavlink_msg_global_position_int_send(mavlink_channel_t chan, uint32_t time_boot_ms, int32_t lat, int32_t lon, int32_t alt, int32_t relative_alt, int16_t vx, int16_t vy, int16_t vz, uint16_t hdg)
212#if MAVLINK_NEED_BYTE_SWAP || !MAVLINK_ALIGNED_FIELDS
213 char buf[MAVLINK_MSG_ID_GLOBAL_POSITION_INT_LEN];
214 _mav_put_uint32_t(buf, 0, time_boot_ms);
215 _mav_put_int32_t(buf, 4, lat);
216 _mav_put_int32_t(buf, 8, lon);
217 _mav_put_int32_t(buf, 12, alt);
218 _mav_put_int32_t(buf, 16, relative_alt);
219 _mav_put_int16_t(buf, 20, vx);
220 _mav_put_int16_t(buf, 22, vy);
221 _mav_put_int16_t(buf, 24, vz);
222 _mav_put_uint16_t(buf, 26, hdg);
224 _mav_finalize_message_chan_send(chan, MAVLINK_MSG_ID_GLOBAL_POSITION_INT, buf, MAVLINK_MSG_ID_GLOBAL_POSITION_INT_MIN_LEN, MAVLINK_MSG_ID_GLOBAL_POSITION_INT_LEN, MAVLINK_MSG_ID_GLOBAL_POSITION_INT_CRC);
226 mavlink_global_position_int_t packet;
227 packet.time_boot_ms = time_boot_ms;
231 packet.relative_alt = relative_alt;
237 _mav_finalize_message_chan_send(chan, MAVLINK_MSG_ID_GLOBAL_POSITION_INT, (
const char *)&packet, MAVLINK_MSG_ID_GLOBAL_POSITION_INT_MIN_LEN, MAVLINK_MSG_ID_GLOBAL_POSITION_INT_LEN, MAVLINK_MSG_ID_GLOBAL_POSITION_INT_CRC);
246static inline void mavlink_msg_global_position_int_send_struct(mavlink_channel_t chan,
const mavlink_global_position_int_t* global_position_int)
248#if MAVLINK_NEED_BYTE_SWAP || !MAVLINK_ALIGNED_FIELDS
249 mavlink_msg_global_position_int_send(chan, global_position_int->time_boot_ms, global_position_int->lat, global_position_int->lon, global_position_int->alt, global_position_int->relative_alt, global_position_int->vx, global_position_int->vy, global_position_int->vz, global_position_int->hdg);
251 _mav_finalize_message_chan_send(chan, MAVLINK_MSG_ID_GLOBAL_POSITION_INT, (
const char *)global_position_int, MAVLINK_MSG_ID_GLOBAL_POSITION_INT_MIN_LEN, MAVLINK_MSG_ID_GLOBAL_POSITION_INT_LEN, MAVLINK_MSG_ID_GLOBAL_POSITION_INT_CRC);
255#if MAVLINK_MSG_ID_GLOBAL_POSITION_INT_LEN <= MAVLINK_MAX_PAYLOAD_LEN
263static inline void mavlink_msg_global_position_int_send_buf(mavlink_message_t *msgbuf, mavlink_channel_t chan, uint32_t time_boot_ms, int32_t lat, int32_t lon, int32_t alt, int32_t relative_alt, int16_t vx, int16_t vy, int16_t vz, uint16_t hdg)
265#if MAVLINK_NEED_BYTE_SWAP || !MAVLINK_ALIGNED_FIELDS
266 char *buf = (
char *)msgbuf;
267 _mav_put_uint32_t(buf, 0, time_boot_ms);
268 _mav_put_int32_t(buf, 4, lat);
269 _mav_put_int32_t(buf, 8, lon);
270 _mav_put_int32_t(buf, 12, alt);
271 _mav_put_int32_t(buf, 16, relative_alt);
272 _mav_put_int16_t(buf, 20, vx);
273 _mav_put_int16_t(buf, 22, vy);
274 _mav_put_int16_t(buf, 24, vz);
275 _mav_put_uint16_t(buf, 26, hdg);
277 _mav_finalize_message_chan_send(chan, MAVLINK_MSG_ID_GLOBAL_POSITION_INT, buf, MAVLINK_MSG_ID_GLOBAL_POSITION_INT_MIN_LEN, MAVLINK_MSG_ID_GLOBAL_POSITION_INT_LEN, MAVLINK_MSG_ID_GLOBAL_POSITION_INT_CRC);
279 mavlink_global_position_int_t *packet = (mavlink_global_position_int_t *)msgbuf;
280 packet->time_boot_ms = time_boot_ms;
284 packet->relative_alt = relative_alt;
290 _mav_finalize_message_chan_send(chan, MAVLINK_MSG_ID_GLOBAL_POSITION_INT, (
const char *)packet, MAVLINK_MSG_ID_GLOBAL_POSITION_INT_MIN_LEN, MAVLINK_MSG_ID_GLOBAL_POSITION_INT_LEN, MAVLINK_MSG_ID_GLOBAL_POSITION_INT_CRC);
305static inline uint32_t mavlink_msg_global_position_int_get_time_boot_ms(
const mavlink_message_t* msg)
307 return _MAV_RETURN_uint32_t(msg, 0);
315static inline int32_t mavlink_msg_global_position_int_get_lat(
const mavlink_message_t* msg)
317 return _MAV_RETURN_int32_t(msg, 4);
325static inline int32_t mavlink_msg_global_position_int_get_lon(
const mavlink_message_t* msg)
327 return _MAV_RETURN_int32_t(msg, 8);
335static inline int32_t mavlink_msg_global_position_int_get_alt(
const mavlink_message_t* msg)
337 return _MAV_RETURN_int32_t(msg, 12);
345static inline int32_t mavlink_msg_global_position_int_get_relative_alt(
const mavlink_message_t* msg)
347 return _MAV_RETURN_int32_t(msg, 16);
355static inline int16_t mavlink_msg_global_position_int_get_vx(
const mavlink_message_t* msg)
357 return _MAV_RETURN_int16_t(msg, 20);
365static inline int16_t mavlink_msg_global_position_int_get_vy(
const mavlink_message_t* msg)
367 return _MAV_RETURN_int16_t(msg, 22);
375static inline int16_t mavlink_msg_global_position_int_get_vz(
const mavlink_message_t* msg)
377 return _MAV_RETURN_int16_t(msg, 24);
385static inline uint16_t mavlink_msg_global_position_int_get_hdg(
const mavlink_message_t* msg)
387 return _MAV_RETURN_uint16_t(msg, 26);
396static inline void mavlink_msg_global_position_int_decode(
const mavlink_message_t* msg, mavlink_global_position_int_t* global_position_int)
398#if MAVLINK_NEED_BYTE_SWAP || !MAVLINK_ALIGNED_FIELDS
399 global_position_int->time_boot_ms = mavlink_msg_global_position_int_get_time_boot_ms(msg);
400 global_position_int->lat = mavlink_msg_global_position_int_get_lat(msg);
401 global_position_int->lon = mavlink_msg_global_position_int_get_lon(msg);
402 global_position_int->alt = mavlink_msg_global_position_int_get_alt(msg);
403 global_position_int->relative_alt = mavlink_msg_global_position_int_get_relative_alt(msg);
404 global_position_int->vx = mavlink_msg_global_position_int_get_vx(msg);
405 global_position_int->vy = mavlink_msg_global_position_int_get_vy(msg);
406 global_position_int->vz = mavlink_msg_global_position_int_get_vz(msg);
407 global_position_int->hdg = mavlink_msg_global_position_int_get_hdg(msg);
409 uint8_t len = msg->len < MAVLINK_MSG_ID_GLOBAL_POSITION_INT_LEN? msg->len : MAVLINK_MSG_ID_GLOBAL_POSITION_INT_LEN;
410 memset(global_position_int, 0, MAVLINK_MSG_ID_GLOBAL_POSITION_INT_LEN);
411 memcpy(global_position_int, _MAV_PAYLOAD(msg), len);