NinjaFlight
 All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
mavlink_msg_set_mag_offsets.h
Go to the documentation of this file.
1 // MESSAGE SET_MAG_OFFSETS PACKING
2 
3 #define MAVLINK_MSG_ID_SET_MAG_OFFSETS 151
4 
6 {
7  int16_t mag_ofs_x;
8  int16_t mag_ofs_y;
9  int16_t mag_ofs_z;
10  uint8_t target_system;
11  uint8_t target_component;
13 
14 #define MAVLINK_MSG_ID_SET_MAG_OFFSETS_LEN 8
15 #define MAVLINK_MSG_ID_151_LEN 8
16 
17 #define MAVLINK_MSG_ID_SET_MAG_OFFSETS_CRC 219
18 #define MAVLINK_MSG_ID_151_CRC 219
19 
20 
21 
22 #define MAVLINK_MESSAGE_INFO_SET_MAG_OFFSETS { \
23  "SET_MAG_OFFSETS", \
24  5, \
25  { { "mag_ofs_x", NULL, MAVLINK_TYPE_INT16_T, 0, 0, offsetof(mavlink_set_mag_offsets_t, mag_ofs_x) }, \
26  { "mag_ofs_y", NULL, MAVLINK_TYPE_INT16_T, 0, 2, offsetof(mavlink_set_mag_offsets_t, mag_ofs_y) }, \
27  { "mag_ofs_z", NULL, MAVLINK_TYPE_INT16_T, 0, 4, offsetof(mavlink_set_mag_offsets_t, mag_ofs_z) }, \
28  { "target_system", NULL, MAVLINK_TYPE_UINT8_T, 0, 6, offsetof(mavlink_set_mag_offsets_t, target_system) }, \
29  { "target_component", NULL, MAVLINK_TYPE_UINT8_T, 0, 7, offsetof(mavlink_set_mag_offsets_t, target_component) }, \
30  } \
31 }
32 
33 
47 static inline uint16_t mavlink_msg_set_mag_offsets_pack(uint8_t system_id, uint8_t component_id, mavlink_message_t* msg,
48  uint8_t target_system, uint8_t target_component, int16_t mag_ofs_x, int16_t mag_ofs_y, int16_t mag_ofs_z)
49 {
50 #if MAVLINK_NEED_BYTE_SWAP || !MAVLINK_ALIGNED_FIELDS
52  _mav_put_int16_t(buf, 0, mag_ofs_x);
53  _mav_put_int16_t(buf, 2, mag_ofs_y);
54  _mav_put_int16_t(buf, 4, mag_ofs_z);
55  _mav_put_uint8_t(buf, 6, target_system);
56  _mav_put_uint8_t(buf, 7, target_component);
57 
59 #else
61  packet.mag_ofs_x = mag_ofs_x;
62  packet.mag_ofs_y = mag_ofs_y;
63  packet.mag_ofs_z = mag_ofs_z;
64  packet.target_system = target_system;
65  packet.target_component = target_component;
66 
68 #endif
69 
70  msg->msgid = MAVLINK_MSG_ID_SET_MAG_OFFSETS;
71 #if MAVLINK_CRC_EXTRA
73 #else
74  return mavlink_finalize_message(msg, system_id, component_id, MAVLINK_MSG_ID_SET_MAG_OFFSETS_LEN);
75 #endif
76 }
77 
91 static inline uint16_t mavlink_msg_set_mag_offsets_pack_chan(uint8_t system_id, uint8_t component_id, uint8_t chan,
92  mavlink_message_t* msg,
93  uint8_t target_system,uint8_t target_component,int16_t mag_ofs_x,int16_t mag_ofs_y,int16_t mag_ofs_z)
94 {
95 #if MAVLINK_NEED_BYTE_SWAP || !MAVLINK_ALIGNED_FIELDS
97  _mav_put_int16_t(buf, 0, mag_ofs_x);
98  _mav_put_int16_t(buf, 2, mag_ofs_y);
99  _mav_put_int16_t(buf, 4, mag_ofs_z);
100  _mav_put_uint8_t(buf, 6, target_system);
101  _mav_put_uint8_t(buf, 7, target_component);
102 
104 #else
106  packet.mag_ofs_x = mag_ofs_x;
107  packet.mag_ofs_y = mag_ofs_y;
108  packet.mag_ofs_z = mag_ofs_z;
109  packet.target_system = target_system;
110  packet.target_component = target_component;
111 
113 #endif
114 
115  msg->msgid = MAVLINK_MSG_ID_SET_MAG_OFFSETS;
116 #if MAVLINK_CRC_EXTRA
118 #else
119  return mavlink_finalize_message_chan(msg, system_id, component_id, chan, MAVLINK_MSG_ID_SET_MAG_OFFSETS_LEN);
120 #endif
121 }
122 
131 static inline uint16_t mavlink_msg_set_mag_offsets_encode(uint8_t system_id, uint8_t component_id, mavlink_message_t* msg, const mavlink_set_mag_offsets_t* set_mag_offsets)
132 {
133  return mavlink_msg_set_mag_offsets_pack(system_id, component_id, msg, set_mag_offsets->target_system, set_mag_offsets->target_component, set_mag_offsets->mag_ofs_x, set_mag_offsets->mag_ofs_y, set_mag_offsets->mag_ofs_z);
134 }
135 
145 static inline uint16_t mavlink_msg_set_mag_offsets_encode_chan(uint8_t system_id, uint8_t component_id, uint8_t chan, mavlink_message_t* msg, const mavlink_set_mag_offsets_t* set_mag_offsets)
146 {
147  return mavlink_msg_set_mag_offsets_pack_chan(system_id, component_id, chan, msg, set_mag_offsets->target_system, set_mag_offsets->target_component, set_mag_offsets->mag_ofs_x, set_mag_offsets->mag_ofs_y, set_mag_offsets->mag_ofs_z);
148 }
149 
160 #ifdef MAVLINK_USE_CONVENIENCE_FUNCTIONS
161 
162 static inline void mavlink_msg_set_mag_offsets_send(mavlink_channel_t chan, uint8_t target_system, uint8_t target_component, int16_t mag_ofs_x, int16_t mag_ofs_y, int16_t mag_ofs_z)
163 {
164 #if MAVLINK_NEED_BYTE_SWAP || !MAVLINK_ALIGNED_FIELDS
166  _mav_put_int16_t(buf, 0, mag_ofs_x);
167  _mav_put_int16_t(buf, 2, mag_ofs_y);
168  _mav_put_int16_t(buf, 4, mag_ofs_z);
169  _mav_put_uint8_t(buf, 6, target_system);
170  _mav_put_uint8_t(buf, 7, target_component);
171 
172 #if MAVLINK_CRC_EXTRA
174 #else
175  _mav_finalize_message_chan_send(chan, MAVLINK_MSG_ID_SET_MAG_OFFSETS, buf, MAVLINK_MSG_ID_SET_MAG_OFFSETS_LEN);
176 #endif
177 #else
179  packet.mag_ofs_x = mag_ofs_x;
180  packet.mag_ofs_y = mag_ofs_y;
181  packet.mag_ofs_z = mag_ofs_z;
182  packet.target_system = target_system;
183  packet.target_component = target_component;
184 
185 #if MAVLINK_CRC_EXTRA
186  _mav_finalize_message_chan_send(chan, MAVLINK_MSG_ID_SET_MAG_OFFSETS, (const char *)&packet, MAVLINK_MSG_ID_SET_MAG_OFFSETS_LEN, MAVLINK_MSG_ID_SET_MAG_OFFSETS_CRC);
187 #else
188  _mav_finalize_message_chan_send(chan, MAVLINK_MSG_ID_SET_MAG_OFFSETS, (const char *)&packet, MAVLINK_MSG_ID_SET_MAG_OFFSETS_LEN);
189 #endif
190 #endif
191 }
192 
193 #if MAVLINK_MSG_ID_SET_MAG_OFFSETS_LEN <= MAVLINK_MAX_PAYLOAD_LEN
194 /*
195  This varient of _send() can be used to save stack space by re-using
196  memory from the receive buffer. The caller provides a
197  mavlink_message_t which is the size of a full mavlink message. This
198  is usually the receive buffer for the channel, and allows a reply to an
199  incoming message with minimum stack space usage.
200  */
201 static inline void mavlink_msg_set_mag_offsets_send_buf(mavlink_message_t *msgbuf, mavlink_channel_t chan, uint8_t target_system, uint8_t target_component, int16_t mag_ofs_x, int16_t mag_ofs_y, int16_t mag_ofs_z)
202 {
203 #if MAVLINK_NEED_BYTE_SWAP || !MAVLINK_ALIGNED_FIELDS
204  char *buf = (char *)msgbuf;
205  _mav_put_int16_t(buf, 0, mag_ofs_x);
206  _mav_put_int16_t(buf, 2, mag_ofs_y);
207  _mav_put_int16_t(buf, 4, mag_ofs_z);
208  _mav_put_uint8_t(buf, 6, target_system);
209  _mav_put_uint8_t(buf, 7, target_component);
210 
211 #if MAVLINK_CRC_EXTRA
213 #else
214  _mav_finalize_message_chan_send(chan, MAVLINK_MSG_ID_SET_MAG_OFFSETS, buf, MAVLINK_MSG_ID_SET_MAG_OFFSETS_LEN);
215 #endif
216 #else
218  packet->mag_ofs_x = mag_ofs_x;
219  packet->mag_ofs_y = mag_ofs_y;
220  packet->mag_ofs_z = mag_ofs_z;
221  packet->target_system = target_system;
222  packet->target_component = target_component;
223 
224 #if MAVLINK_CRC_EXTRA
225  _mav_finalize_message_chan_send(chan, MAVLINK_MSG_ID_SET_MAG_OFFSETS, (const char *)packet, MAVLINK_MSG_ID_SET_MAG_OFFSETS_LEN, MAVLINK_MSG_ID_SET_MAG_OFFSETS_CRC);
226 #else
227  _mav_finalize_message_chan_send(chan, MAVLINK_MSG_ID_SET_MAG_OFFSETS, (const char *)packet, MAVLINK_MSG_ID_SET_MAG_OFFSETS_LEN);
228 #endif
229 #endif
230 }
231 #endif
232 
233 #endif
234 
235 // MESSAGE SET_MAG_OFFSETS UNPACKING
236 
237 
243 static inline uint8_t mavlink_msg_set_mag_offsets_get_target_system(const mavlink_message_t* msg)
244 {
245  return _MAV_RETURN_uint8_t(msg, 6);
246 }
247 
253 static inline uint8_t mavlink_msg_set_mag_offsets_get_target_component(const mavlink_message_t* msg)
254 {
255  return _MAV_RETURN_uint8_t(msg, 7);
256 }
257 
263 static inline int16_t mavlink_msg_set_mag_offsets_get_mag_ofs_x(const mavlink_message_t* msg)
264 {
265  return _MAV_RETURN_int16_t(msg, 0);
266 }
267 
273 static inline int16_t mavlink_msg_set_mag_offsets_get_mag_ofs_y(const mavlink_message_t* msg)
274 {
275  return _MAV_RETURN_int16_t(msg, 2);
276 }
277 
283 static inline int16_t mavlink_msg_set_mag_offsets_get_mag_ofs_z(const mavlink_message_t* msg)
284 {
285  return _MAV_RETURN_int16_t(msg, 4);
286 }
287 
294 static inline void mavlink_msg_set_mag_offsets_decode(const mavlink_message_t* msg, mavlink_set_mag_offsets_t* set_mag_offsets)
295 {
296 #if MAVLINK_NEED_BYTE_SWAP
297  set_mag_offsets->mag_ofs_x = mavlink_msg_set_mag_offsets_get_mag_ofs_x(msg);
298  set_mag_offsets->mag_ofs_y = mavlink_msg_set_mag_offsets_get_mag_ofs_y(msg);
299  set_mag_offsets->mag_ofs_z = mavlink_msg_set_mag_offsets_get_mag_ofs_z(msg);
300  set_mag_offsets->target_system = mavlink_msg_set_mag_offsets_get_target_system(msg);
301  set_mag_offsets->target_component = mavlink_msg_set_mag_offsets_get_target_component(msg);
302 #else
303  memcpy(set_mag_offsets, _MAV_PAYLOAD(msg), MAVLINK_MSG_ID_SET_MAG_OFFSETS_LEN);
304 #endif
305 }
#define _MAV_RETURN_uint8_t(msg, wire_offset)
Definition: protocol.h:238
#define _mav_put_uint8_t(buf, wire_offset, b)
Definition: protocol.h:134
#define _mav_put_int16_t(buf, wire_offset, b)
Definition: protocol.h:140