4#define MAVLINK_MSG_ID_LOCAL_POSITION_NED 32
7typedef struct __mavlink_local_position_ned_t {
15}) mavlink_local_position_ned_t;
17#define MAVLINK_MSG_ID_LOCAL_POSITION_NED_LEN 28
18#define MAVLINK_MSG_ID_LOCAL_POSITION_NED_MIN_LEN 28
19#define MAVLINK_MSG_ID_32_LEN 28
20#define MAVLINK_MSG_ID_32_MIN_LEN 28
22#define MAVLINK_MSG_ID_LOCAL_POSITION_NED_CRC 185
23#define MAVLINK_MSG_ID_32_CRC 185
27#if MAVLINK_COMMAND_24BIT
28#define MAVLINK_MESSAGE_INFO_LOCAL_POSITION_NED { \
30 "LOCAL_POSITION_NED", \
32 { { "time_boot_ms", NULL, MAVLINK_TYPE_UINT32_T, 0, 0, offsetof(mavlink_local_position_ned_t, time_boot_ms) }, \
33 { "x", NULL, MAVLINK_TYPE_FLOAT, 0, 4, offsetof(mavlink_local_position_ned_t, x) }, \
34 { "y", NULL, MAVLINK_TYPE_FLOAT, 0, 8, offsetof(mavlink_local_position_ned_t, y) }, \
35 { "z", NULL, MAVLINK_TYPE_FLOAT, 0, 12, offsetof(mavlink_local_position_ned_t, z) }, \
36 { "vx", NULL, MAVLINK_TYPE_FLOAT, 0, 16, offsetof(mavlink_local_position_ned_t, vx) }, \
37 { "vy", NULL, MAVLINK_TYPE_FLOAT, 0, 20, offsetof(mavlink_local_position_ned_t, vy) }, \
38 { "vz", NULL, MAVLINK_TYPE_FLOAT, 0, 24, offsetof(mavlink_local_position_ned_t, vz) }, \
42#define MAVLINK_MESSAGE_INFO_LOCAL_POSITION_NED { \
43 "LOCAL_POSITION_NED", \
45 { { "time_boot_ms", NULL, MAVLINK_TYPE_UINT32_T, 0, 0, offsetof(mavlink_local_position_ned_t, time_boot_ms) }, \
46 { "x", NULL, MAVLINK_TYPE_FLOAT, 0, 4, offsetof(mavlink_local_position_ned_t, x) }, \
47 { "y", NULL, MAVLINK_TYPE_FLOAT, 0, 8, offsetof(mavlink_local_position_ned_t, y) }, \
48 { "z", NULL, MAVLINK_TYPE_FLOAT, 0, 12, offsetof(mavlink_local_position_ned_t, z) }, \
49 { "vx", NULL, MAVLINK_TYPE_FLOAT, 0, 16, offsetof(mavlink_local_position_ned_t, vx) }, \
50 { "vy", NULL, MAVLINK_TYPE_FLOAT, 0, 20, offsetof(mavlink_local_position_ned_t, vy) }, \
51 { "vz", NULL, MAVLINK_TYPE_FLOAT, 0, 24, offsetof(mavlink_local_position_ned_t, vz) }, \
71static inline uint16_t mavlink_msg_local_position_ned_pack(uint8_t system_id, uint8_t component_id, mavlink_message_t* msg,
72 uint32_t time_boot_ms,
float x,
float y,
float z,
float vx,
float vy,
float vz)
74#if MAVLINK_NEED_BYTE_SWAP || !MAVLINK_ALIGNED_FIELDS
75 char buf[MAVLINK_MSG_ID_LOCAL_POSITION_NED_LEN];
76 _mav_put_uint32_t(buf, 0, time_boot_ms);
77 _mav_put_float(buf, 4, x);
78 _mav_put_float(buf, 8, y);
79 _mav_put_float(buf, 12, z);
80 _mav_put_float(buf, 16, vx);
81 _mav_put_float(buf, 20, vy);
82 _mav_put_float(buf, 24, vz);
84 memcpy(_MAV_PAYLOAD_NON_CONST(msg), buf, MAVLINK_MSG_ID_LOCAL_POSITION_NED_LEN);
86 mavlink_local_position_ned_t packet;
87 packet.time_boot_ms = time_boot_ms;
95 memcpy(_MAV_PAYLOAD_NON_CONST(msg), &packet, MAVLINK_MSG_ID_LOCAL_POSITION_NED_LEN);
98 msg->msgid = MAVLINK_MSG_ID_LOCAL_POSITION_NED;
99 return mavlink_finalize_message(msg, system_id, component_id, MAVLINK_MSG_ID_LOCAL_POSITION_NED_MIN_LEN, MAVLINK_MSG_ID_LOCAL_POSITION_NED_LEN, MAVLINK_MSG_ID_LOCAL_POSITION_NED_CRC);
117static inline uint16_t mavlink_msg_local_position_ned_pack_chan(uint8_t system_id, uint8_t component_id, uint8_t chan,
118 mavlink_message_t* msg,
119 uint32_t time_boot_ms,
float x,
float y,
float z,
float vx,
float vy,
float vz)
121#if MAVLINK_NEED_BYTE_SWAP || !MAVLINK_ALIGNED_FIELDS
122 char buf[MAVLINK_MSG_ID_LOCAL_POSITION_NED_LEN];
123 _mav_put_uint32_t(buf, 0, time_boot_ms);
124 _mav_put_float(buf, 4, x);
125 _mav_put_float(buf, 8, y);
126 _mav_put_float(buf, 12, z);
127 _mav_put_float(buf, 16, vx);
128 _mav_put_float(buf, 20, vy);
129 _mav_put_float(buf, 24, vz);
131 memcpy(_MAV_PAYLOAD_NON_CONST(msg), buf, MAVLINK_MSG_ID_LOCAL_POSITION_NED_LEN);
133 mavlink_local_position_ned_t packet;
134 packet.time_boot_ms = time_boot_ms;
142 memcpy(_MAV_PAYLOAD_NON_CONST(msg), &packet, MAVLINK_MSG_ID_LOCAL_POSITION_NED_LEN);
145 msg->msgid = MAVLINK_MSG_ID_LOCAL_POSITION_NED;
146 return mavlink_finalize_message_chan(msg, system_id, component_id, chan, MAVLINK_MSG_ID_LOCAL_POSITION_NED_MIN_LEN, MAVLINK_MSG_ID_LOCAL_POSITION_NED_LEN, MAVLINK_MSG_ID_LOCAL_POSITION_NED_CRC);
157static inline uint16_t mavlink_msg_local_position_ned_encode(uint8_t system_id, uint8_t component_id, mavlink_message_t* msg,
const mavlink_local_position_ned_t* local_position_ned)
159 return mavlink_msg_local_position_ned_pack(system_id, component_id, msg, local_position_ned->time_boot_ms, local_position_ned->x, local_position_ned->y, local_position_ned->z, local_position_ned->vx, local_position_ned->vy, local_position_ned->vz);
171static inline uint16_t mavlink_msg_local_position_ned_encode_chan(uint8_t system_id, uint8_t component_id, uint8_t chan, mavlink_message_t* msg,
const mavlink_local_position_ned_t* local_position_ned)
173 return mavlink_msg_local_position_ned_pack_chan(system_id, component_id, chan, msg, local_position_ned->time_boot_ms, local_position_ned->x, local_position_ned->y, local_position_ned->z, local_position_ned->vx, local_position_ned->vy, local_position_ned->vz);
188#ifdef MAVLINK_USE_CONVENIENCE_FUNCTIONS
190static inline void mavlink_msg_local_position_ned_send(mavlink_channel_t chan, uint32_t time_boot_ms,
float x,
float y,
float z,
float vx,
float vy,
float vz)
192#if MAVLINK_NEED_BYTE_SWAP || !MAVLINK_ALIGNED_FIELDS
193 char buf[MAVLINK_MSG_ID_LOCAL_POSITION_NED_LEN];
194 _mav_put_uint32_t(buf, 0, time_boot_ms);
195 _mav_put_float(buf, 4, x);
196 _mav_put_float(buf, 8, y);
197 _mav_put_float(buf, 12, z);
198 _mav_put_float(buf, 16, vx);
199 _mav_put_float(buf, 20, vy);
200 _mav_put_float(buf, 24, vz);
202 _mav_finalize_message_chan_send(chan, MAVLINK_MSG_ID_LOCAL_POSITION_NED, buf, MAVLINK_MSG_ID_LOCAL_POSITION_NED_MIN_LEN, MAVLINK_MSG_ID_LOCAL_POSITION_NED_LEN, MAVLINK_MSG_ID_LOCAL_POSITION_NED_CRC);
204 mavlink_local_position_ned_t packet;
205 packet.time_boot_ms = time_boot_ms;
213 _mav_finalize_message_chan_send(chan, MAVLINK_MSG_ID_LOCAL_POSITION_NED, (
const char *)&packet, MAVLINK_MSG_ID_LOCAL_POSITION_NED_MIN_LEN, MAVLINK_MSG_ID_LOCAL_POSITION_NED_LEN, MAVLINK_MSG_ID_LOCAL_POSITION_NED_CRC);
222static inline void mavlink_msg_local_position_ned_send_struct(mavlink_channel_t chan,
const mavlink_local_position_ned_t* local_position_ned)
224#if MAVLINK_NEED_BYTE_SWAP || !MAVLINK_ALIGNED_FIELDS
225 mavlink_msg_local_position_ned_send(chan, local_position_ned->time_boot_ms, local_position_ned->x, local_position_ned->y, local_position_ned->z, local_position_ned->vx, local_position_ned->vy, local_position_ned->vz);
227 _mav_finalize_message_chan_send(chan, MAVLINK_MSG_ID_LOCAL_POSITION_NED, (
const char *)local_position_ned, MAVLINK_MSG_ID_LOCAL_POSITION_NED_MIN_LEN, MAVLINK_MSG_ID_LOCAL_POSITION_NED_LEN, MAVLINK_MSG_ID_LOCAL_POSITION_NED_CRC);
231#if MAVLINK_MSG_ID_LOCAL_POSITION_NED_LEN <= MAVLINK_MAX_PAYLOAD_LEN
239static inline void mavlink_msg_local_position_ned_send_buf(mavlink_message_t *msgbuf, mavlink_channel_t chan, uint32_t time_boot_ms,
float x,
float y,
float z,
float vx,
float vy,
float vz)
241#if MAVLINK_NEED_BYTE_SWAP || !MAVLINK_ALIGNED_FIELDS
242 char *buf = (
char *)msgbuf;
243 _mav_put_uint32_t(buf, 0, time_boot_ms);
244 _mav_put_float(buf, 4, x);
245 _mav_put_float(buf, 8, y);
246 _mav_put_float(buf, 12, z);
247 _mav_put_float(buf, 16, vx);
248 _mav_put_float(buf, 20, vy);
249 _mav_put_float(buf, 24, vz);
251 _mav_finalize_message_chan_send(chan, MAVLINK_MSG_ID_LOCAL_POSITION_NED, buf, MAVLINK_MSG_ID_LOCAL_POSITION_NED_MIN_LEN, MAVLINK_MSG_ID_LOCAL_POSITION_NED_LEN, MAVLINK_MSG_ID_LOCAL_POSITION_NED_CRC);
253 mavlink_local_position_ned_t *packet = (mavlink_local_position_ned_t *)msgbuf;
254 packet->time_boot_ms = time_boot_ms;
262 _mav_finalize_message_chan_send(chan, MAVLINK_MSG_ID_LOCAL_POSITION_NED, (
const char *)packet, MAVLINK_MSG_ID_LOCAL_POSITION_NED_MIN_LEN, MAVLINK_MSG_ID_LOCAL_POSITION_NED_LEN, MAVLINK_MSG_ID_LOCAL_POSITION_NED_CRC);
277static inline uint32_t mavlink_msg_local_position_ned_get_time_boot_ms(
const mavlink_message_t* msg)
279 return _MAV_RETURN_uint32_t(msg, 0);
287static inline float mavlink_msg_local_position_ned_get_x(
const mavlink_message_t* msg)
289 return _MAV_RETURN_float(msg, 4);
297static inline float mavlink_msg_local_position_ned_get_y(
const mavlink_message_t* msg)
299 return _MAV_RETURN_float(msg, 8);
307static inline float mavlink_msg_local_position_ned_get_z(
const mavlink_message_t* msg)
309 return _MAV_RETURN_float(msg, 12);
317static inline float mavlink_msg_local_position_ned_get_vx(
const mavlink_message_t* msg)
319 return _MAV_RETURN_float(msg, 16);
327static inline float mavlink_msg_local_position_ned_get_vy(
const mavlink_message_t* msg)
329 return _MAV_RETURN_float(msg, 20);
337static inline float mavlink_msg_local_position_ned_get_vz(
const mavlink_message_t* msg)
339 return _MAV_RETURN_float(msg, 24);
348static inline void mavlink_msg_local_position_ned_decode(
const mavlink_message_t* msg, mavlink_local_position_ned_t* local_position_ned)
350#if MAVLINK_NEED_BYTE_SWAP || !MAVLINK_ALIGNED_FIELDS
351 local_position_ned->time_boot_ms = mavlink_msg_local_position_ned_get_time_boot_ms(msg);
352 local_position_ned->x = mavlink_msg_local_position_ned_get_x(msg);
353 local_position_ned->y = mavlink_msg_local_position_ned_get_y(msg);
354 local_position_ned->z = mavlink_msg_local_position_ned_get_z(msg);
355 local_position_ned->vx = mavlink_msg_local_position_ned_get_vx(msg);
356 local_position_ned->vy = mavlink_msg_local_position_ned_get_vy(msg);
357 local_position_ned->vz = mavlink_msg_local_position_ned_get_vz(msg);
359 uint8_t len = msg->len < MAVLINK_MSG_ID_LOCAL_POSITION_NED_LEN? msg->len : MAVLINK_MSG_ID_LOCAL_POSITION_NED_LEN;
360 memset(local_position_ned, 0, MAVLINK_MSG_ID_LOCAL_POSITION_NED_LEN);
361 memcpy(local_position_ned, _MAV_PAYLOAD(msg), len);