2 // MESSAGE LOCAL_POSITION_NED PACKING
4 #define MAVLINK_MSG_ID_LOCAL_POSITION_NED 32
7 typedef struct __mavlink_local_position_ned_t
{
8 uint32_t time_boot_ms
; /*< [ms] Timestamp (time since system boot).*/
9 float x
; /*< [m] X Position*/
10 float y
; /*< [m] Y Position*/
11 float z
; /*< [m] Z Position*/
12 float vx
; /*< [m/s] X Speed*/
13 float vy
; /*< [m/s] Y Speed*/
14 float vz
; /*< [m/s] Z Speed*/
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) }, \
57 * @brief Pack a local_position_ned 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 time_boot_ms [ms] Timestamp (time since system boot).
63 * @param x [m] X Position
64 * @param y [m] Y Position
65 * @param z [m] Z Position
66 * @param vx [m/s] X Speed
67 * @param vy [m/s] Y Speed
68 * @param vz [m/s] Z Speed
69 * @return length of the message in bytes (excluding serial stream start sign)
71 static 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
);
103 * @brief Pack a local_position_ned 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 time_boot_ms [ms] Timestamp (time since system boot).
109 * @param x [m] X Position
110 * @param y [m] Y Position
111 * @param z [m] Z Position
112 * @param vx [m/s] X Speed
113 * @param vy [m/s] Y Speed
114 * @param vz [m/s] Z Speed
115 * @return length of the message in bytes (excluding serial stream start sign)
117 static 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
);
150 * @brief Encode a local_position_ned 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 local_position_ned C-struct to read the message contents from
157 static 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
);
163 * @brief Encode a local_position_ned 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 local_position_ned C-struct to read the message contents from
171 static 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
);
177 * @brief Send a local_position_ned message
178 * @param chan MAVLink channel to send the message
180 * @param time_boot_ms [ms] Timestamp (time since system boot).
181 * @param x [m] X Position
182 * @param y [m] Y Position
183 * @param z [m] Z Position
184 * @param vx [m/s] X Speed
185 * @param vy [m/s] Y Speed
186 * @param vz [m/s] Z Speed
188 #ifdef MAVLINK_USE_CONVENIENCE_FUNCTIONS
190 static 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
);
218 * @brief Send a local_position_ned message
219 * @param chan MAVLink channel to send the message
220 * @param struct The MAVLink struct to serialize
222 static 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
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_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
);
269 // MESSAGE LOCAL_POSITION_NED UNPACKING
273 * @brief Get field time_boot_ms from local_position_ned message
275 * @return [ms] Timestamp (time since system boot).
277 static 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);
283 * @brief Get field x from local_position_ned message
285 * @return [m] X Position
287 static inline float mavlink_msg_local_position_ned_get_x(const mavlink_message_t
* msg
)
289 return _MAV_RETURN_float(msg
, 4);
293 * @brief Get field y from local_position_ned message
295 * @return [m] Y Position
297 static inline float mavlink_msg_local_position_ned_get_y(const mavlink_message_t
* msg
)
299 return _MAV_RETURN_float(msg
, 8);
303 * @brief Get field z from local_position_ned message
305 * @return [m] Z Position
307 static inline float mavlink_msg_local_position_ned_get_z(const mavlink_message_t
* msg
)
309 return _MAV_RETURN_float(msg
, 12);
313 * @brief Get field vx from local_position_ned message
315 * @return [m/s] X Speed
317 static inline float mavlink_msg_local_position_ned_get_vx(const mavlink_message_t
* msg
)
319 return _MAV_RETURN_float(msg
, 16);
323 * @brief Get field vy from local_position_ned message
325 * @return [m/s] Y Speed
327 static inline float mavlink_msg_local_position_ned_get_vy(const mavlink_message_t
* msg
)
329 return _MAV_RETURN_float(msg
, 20);
333 * @brief Get field vz from local_position_ned message
335 * @return [m/s] Z Speed
337 static inline float mavlink_msg_local_position_ned_get_vz(const mavlink_message_t
* msg
)
339 return _MAV_RETURN_float(msg
, 24);
343 * @brief Decode a local_position_ned message into a struct
345 * @param msg The message to decode
346 * @param local_position_ned C-struct to decode the message contents into
348 static 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
);