Merge pull request #10476 from radiolinkW/RADIOLINKF722
[inav.git] / lib / main / MAVLink / common / mavlink_msg_local_position_ned.h
blob48c71d90d700f60239998f134ef2c23d9975d454
1 #pragma once
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 { \
29 32, \
30 "LOCAL_POSITION_NED", \
31 7, \
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) }, \
39 } \
41 #else
42 #define MAVLINK_MESSAGE_INFO_LOCAL_POSITION_NED { \
43 "LOCAL_POSITION_NED", \
44 7, \
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) }, \
52 } \
54 #endif
56 /**
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);
85 #else
86 mavlink_local_position_ned_t packet;
87 packet.time_boot_ms = time_boot_ms;
88 packet.x = x;
89 packet.y = y;
90 packet.z = z;
91 packet.vx = vx;
92 packet.vy = vy;
93 packet.vz = vz;
95 memcpy(_MAV_PAYLOAD_NON_CONST(msg), &packet, MAVLINK_MSG_ID_LOCAL_POSITION_NED_LEN);
96 #endif
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);
132 #else
133 mavlink_local_position_ned_t packet;
134 packet.time_boot_ms = time_boot_ms;
135 packet.x = x;
136 packet.y = y;
137 packet.z = z;
138 packet.vx = vx;
139 packet.vy = vy;
140 packet.vz = vz;
142 memcpy(_MAV_PAYLOAD_NON_CONST(msg), &packet, MAVLINK_MSG_ID_LOCAL_POSITION_NED_LEN);
143 #endif
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);
203 #else
204 mavlink_local_position_ned_t packet;
205 packet.time_boot_ms = time_boot_ms;
206 packet.x = x;
207 packet.y = y;
208 packet.z = z;
209 packet.vx = vx;
210 packet.vy = vy;
211 packet.vz = vz;
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);
214 #endif
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);
226 #else
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);
228 #endif
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);
252 #else
253 mavlink_local_position_ned_t *packet = (mavlink_local_position_ned_t *)msgbuf;
254 packet->time_boot_ms = time_boot_ms;
255 packet->x = x;
256 packet->y = y;
257 packet->z = z;
258 packet->vx = vx;
259 packet->vy = vy;
260 packet->vz = vz;
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);
263 #endif
265 #endif
267 #endif
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);
358 #else
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);
362 #endif