NinjaFlight
 All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
mavlink_msg_marker.h
Go to the documentation of this file.
1 // MESSAGE MARKER PACKING
2 
3 #define MAVLINK_MSG_ID_MARKER 171
4 
5 typedef struct __mavlink_marker_t
6 {
7  float x;
8  float y;
9  float z;
10  float roll;
11  float pitch;
12  float yaw;
13  uint16_t id;
15 
16 #define MAVLINK_MSG_ID_MARKER_LEN 26
17 #define MAVLINK_MSG_ID_171_LEN 26
18 
19 #define MAVLINK_MSG_ID_MARKER_CRC 249
20 #define MAVLINK_MSG_ID_171_CRC 249
21 
22 
23 
24 #define MAVLINK_MESSAGE_INFO_MARKER { \
25  "MARKER", \
26  7, \
27  { { "x", NULL, MAVLINK_TYPE_FLOAT, 0, 0, offsetof(mavlink_marker_t, x) }, \
28  { "y", NULL, MAVLINK_TYPE_FLOAT, 0, 4, offsetof(mavlink_marker_t, y) }, \
29  { "z", NULL, MAVLINK_TYPE_FLOAT, 0, 8, offsetof(mavlink_marker_t, z) }, \
30  { "roll", NULL, MAVLINK_TYPE_FLOAT, 0, 12, offsetof(mavlink_marker_t, roll) }, \
31  { "pitch", NULL, MAVLINK_TYPE_FLOAT, 0, 16, offsetof(mavlink_marker_t, pitch) }, \
32  { "yaw", NULL, MAVLINK_TYPE_FLOAT, 0, 20, offsetof(mavlink_marker_t, yaw) }, \
33  { "id", NULL, MAVLINK_TYPE_UINT16_T, 0, 24, offsetof(mavlink_marker_t, id) }, \
34  } \
35 }
36 
37 
53 static inline uint16_t mavlink_msg_marker_pack(uint8_t system_id, uint8_t component_id, mavlink_message_t* msg,
54  uint16_t id, float x, float y, float z, float roll, float pitch, float yaw)
55 {
56 #if MAVLINK_NEED_BYTE_SWAP || !MAVLINK_ALIGNED_FIELDS
57  char buf[MAVLINK_MSG_ID_MARKER_LEN];
58  _mav_put_float(buf, 0, x);
59  _mav_put_float(buf, 4, y);
60  _mav_put_float(buf, 8, z);
61  _mav_put_float(buf, 12, roll);
62  _mav_put_float(buf, 16, pitch);
63  _mav_put_float(buf, 20, yaw);
64  _mav_put_uint16_t(buf, 24, id);
65 
67 #else
68  mavlink_marker_t packet;
69  packet.x = x;
70  packet.y = y;
71  packet.z = z;
72  packet.roll = roll;
73  packet.pitch = pitch;
74  packet.yaw = yaw;
75  packet.id = id;
76 
78 #endif
79 
80  msg->msgid = MAVLINK_MSG_ID_MARKER;
81 #if MAVLINK_CRC_EXTRA
83 #else
84  return mavlink_finalize_message(msg, system_id, component_id, MAVLINK_MSG_ID_MARKER_LEN);
85 #endif
86 }
87 
103 static inline uint16_t mavlink_msg_marker_pack_chan(uint8_t system_id, uint8_t component_id, uint8_t chan,
104  mavlink_message_t* msg,
105  uint16_t id,float x,float y,float z,float roll,float pitch,float yaw)
106 {
107 #if MAVLINK_NEED_BYTE_SWAP || !MAVLINK_ALIGNED_FIELDS
108  char buf[MAVLINK_MSG_ID_MARKER_LEN];
109  _mav_put_float(buf, 0, x);
110  _mav_put_float(buf, 4, y);
111  _mav_put_float(buf, 8, z);
112  _mav_put_float(buf, 12, roll);
113  _mav_put_float(buf, 16, pitch);
114  _mav_put_float(buf, 20, yaw);
115  _mav_put_uint16_t(buf, 24, id);
116 
118 #else
119  mavlink_marker_t packet;
120  packet.x = x;
121  packet.y = y;
122  packet.z = z;
123  packet.roll = roll;
124  packet.pitch = pitch;
125  packet.yaw = yaw;
126  packet.id = id;
127 
128  memcpy(_MAV_PAYLOAD_NON_CONST(msg), &packet, MAVLINK_MSG_ID_MARKER_LEN);
129 #endif
130 
131  msg->msgid = MAVLINK_MSG_ID_MARKER;
132 #if MAVLINK_CRC_EXTRA
133  return mavlink_finalize_message_chan(msg, system_id, component_id, chan, MAVLINK_MSG_ID_MARKER_LEN, MAVLINK_MSG_ID_MARKER_CRC);
134 #else
135  return mavlink_finalize_message_chan(msg, system_id, component_id, chan, MAVLINK_MSG_ID_MARKER_LEN);
136 #endif
137 }
138 
147 static inline uint16_t mavlink_msg_marker_encode(uint8_t system_id, uint8_t component_id, mavlink_message_t* msg, const mavlink_marker_t* marker)
148 {
149  return mavlink_msg_marker_pack(system_id, component_id, msg, marker->id, marker->x, marker->y, marker->z, marker->roll, marker->pitch, marker->yaw);
150 }
151 
161 static inline uint16_t mavlink_msg_marker_encode_chan(uint8_t system_id, uint8_t component_id, uint8_t chan, mavlink_message_t* msg, const mavlink_marker_t* marker)
162 {
163  return mavlink_msg_marker_pack_chan(system_id, component_id, chan, msg, marker->id, marker->x, marker->y, marker->z, marker->roll, marker->pitch, marker->yaw);
164 }
165 
178 #ifdef MAVLINK_USE_CONVENIENCE_FUNCTIONS
179 
180 static inline void mavlink_msg_marker_send(mavlink_channel_t chan, uint16_t id, float x, float y, float z, float roll, float pitch, float yaw)
181 {
182 #if MAVLINK_NEED_BYTE_SWAP || !MAVLINK_ALIGNED_FIELDS
183  char buf[MAVLINK_MSG_ID_MARKER_LEN];
184  _mav_put_float(buf, 0, x);
185  _mav_put_float(buf, 4, y);
186  _mav_put_float(buf, 8, z);
187  _mav_put_float(buf, 12, roll);
188  _mav_put_float(buf, 16, pitch);
189  _mav_put_float(buf, 20, yaw);
190  _mav_put_uint16_t(buf, 24, id);
191 
192 #if MAVLINK_CRC_EXTRA
193  _mav_finalize_message_chan_send(chan, MAVLINK_MSG_ID_MARKER, buf, MAVLINK_MSG_ID_MARKER_LEN, MAVLINK_MSG_ID_MARKER_CRC);
194 #else
195  _mav_finalize_message_chan_send(chan, MAVLINK_MSG_ID_MARKER, buf, MAVLINK_MSG_ID_MARKER_LEN);
196 #endif
197 #else
198  mavlink_marker_t packet;
199  packet.x = x;
200  packet.y = y;
201  packet.z = z;
202  packet.roll = roll;
203  packet.pitch = pitch;
204  packet.yaw = yaw;
205  packet.id = id;
206 
207 #if MAVLINK_CRC_EXTRA
208  _mav_finalize_message_chan_send(chan, MAVLINK_MSG_ID_MARKER, (const char *)&packet, MAVLINK_MSG_ID_MARKER_LEN, MAVLINK_MSG_ID_MARKER_CRC);
209 #else
210  _mav_finalize_message_chan_send(chan, MAVLINK_MSG_ID_MARKER, (const char *)&packet, MAVLINK_MSG_ID_MARKER_LEN);
211 #endif
212 #endif
213 }
214 
215 #if MAVLINK_MSG_ID_MARKER_LEN <= MAVLINK_MAX_PAYLOAD_LEN
216 /*
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.
222  */
223 static inline void mavlink_msg_marker_send_buf(mavlink_message_t *msgbuf, mavlink_channel_t chan, uint16_t id, float x, float y, float z, float roll, float pitch, float yaw)
224 {
225 #if MAVLINK_NEED_BYTE_SWAP || !MAVLINK_ALIGNED_FIELDS
226  char *buf = (char *)msgbuf;
227  _mav_put_float(buf, 0, x);
228  _mav_put_float(buf, 4, y);
229  _mav_put_float(buf, 8, z);
230  _mav_put_float(buf, 12, roll);
231  _mav_put_float(buf, 16, pitch);
232  _mav_put_float(buf, 20, yaw);
233  _mav_put_uint16_t(buf, 24, id);
234 
235 #if MAVLINK_CRC_EXTRA
236  _mav_finalize_message_chan_send(chan, MAVLINK_MSG_ID_MARKER, buf, MAVLINK_MSG_ID_MARKER_LEN, MAVLINK_MSG_ID_MARKER_CRC);
237 #else
238  _mav_finalize_message_chan_send(chan, MAVLINK_MSG_ID_MARKER, buf, MAVLINK_MSG_ID_MARKER_LEN);
239 #endif
240 #else
241  mavlink_marker_t *packet = (mavlink_marker_t *)msgbuf;
242  packet->x = x;
243  packet->y = y;
244  packet->z = z;
245  packet->roll = roll;
246  packet->pitch = pitch;
247  packet->yaw = yaw;
248  packet->id = id;
249 
250 #if MAVLINK_CRC_EXTRA
251  _mav_finalize_message_chan_send(chan, MAVLINK_MSG_ID_MARKER, (const char *)packet, MAVLINK_MSG_ID_MARKER_LEN, MAVLINK_MSG_ID_MARKER_CRC);
252 #else
253  _mav_finalize_message_chan_send(chan, MAVLINK_MSG_ID_MARKER, (const char *)packet, MAVLINK_MSG_ID_MARKER_LEN);
254 #endif
255 #endif
256 }
257 #endif
258 
259 #endif
260 
261 // MESSAGE MARKER UNPACKING
262 
263 
269 static inline uint16_t mavlink_msg_marker_get_id(const mavlink_message_t* msg)
270 {
271  return _MAV_RETURN_uint16_t(msg, 24);
272 }
273 
279 static inline float mavlink_msg_marker_get_x(const mavlink_message_t* msg)
280 {
281  return _MAV_RETURN_float(msg, 0);
282 }
283 
289 static inline float mavlink_msg_marker_get_y(const mavlink_message_t* msg)
290 {
291  return _MAV_RETURN_float(msg, 4);
292 }
293 
299 static inline float mavlink_msg_marker_get_z(const mavlink_message_t* msg)
300 {
301  return _MAV_RETURN_float(msg, 8);
302 }
303 
309 static inline float mavlink_msg_marker_get_roll(const mavlink_message_t* msg)
310 {
311  return _MAV_RETURN_float(msg, 12);
312 }
313 
319 static inline float mavlink_msg_marker_get_pitch(const mavlink_message_t* msg)
320 {
321  return _MAV_RETURN_float(msg, 16);
322 }
323 
329 static inline float mavlink_msg_marker_get_yaw(const mavlink_message_t* msg)
330 {
331  return _MAV_RETURN_float(msg, 20);
332 }
333 
340 static inline void mavlink_msg_marker_decode(const mavlink_message_t* msg, mavlink_marker_t* marker)
341 {
342 #if MAVLINK_NEED_BYTE_SWAP
343  marker->x = mavlink_msg_marker_get_x(msg);
344  marker->y = mavlink_msg_marker_get_y(msg);
345  marker->z = mavlink_msg_marker_get_z(msg);
346  marker->roll = mavlink_msg_marker_get_roll(msg);
347  marker->pitch = mavlink_msg_marker_get_pitch(msg);
348  marker->yaw = mavlink_msg_marker_get_yaw(msg);
349  marker->id = mavlink_msg_marker_get_id(msg);
350 #else
351  memcpy(marker, _MAV_PAYLOAD(msg), MAVLINK_MSG_ID_MARKER_LEN);
352 #endif
353 }
#define _mav_put_float(buf, wire_offset, b)
Definition: protocol.h:145
int16_t pitch
Definition: accelerometer.h:52
uint8_t z
set the acc deadband for z-Axis, this ignores small accelerations
Definition: accelerometer.h:52
int16_t yaw
Definition: sensors.h:31
#define _mav_put_uint16_t(buf, wire_offset, b)
Definition: protocol.h:139
int16_t roll
Definition: accelerometer.h:51