NinjaFlight
 All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
mavlink_msg_ahrs.h
Go to the documentation of this file.
1 // MESSAGE AHRS PACKING
2 
3 #define MAVLINK_MSG_ID_AHRS 163
4 
5 typedef struct __mavlink_ahrs_t
6 {
7  float omegaIx;
8  float omegaIy;
9  float omegaIz;
10  float accel_weight;
11  float renorm_val;
12  float error_rp;
13  float error_yaw;
15 
16 #define MAVLINK_MSG_ID_AHRS_LEN 28
17 #define MAVLINK_MSG_ID_163_LEN 28
18 
19 #define MAVLINK_MSG_ID_AHRS_CRC 127
20 #define MAVLINK_MSG_ID_163_CRC 127
21 
22 
23 
24 #define MAVLINK_MESSAGE_INFO_AHRS { \
25  "AHRS", \
26  7, \
27  { { "omegaIx", NULL, MAVLINK_TYPE_FLOAT, 0, 0, offsetof(mavlink_ahrs_t, omegaIx) }, \
28  { "omegaIy", NULL, MAVLINK_TYPE_FLOAT, 0, 4, offsetof(mavlink_ahrs_t, omegaIy) }, \
29  { "omegaIz", NULL, MAVLINK_TYPE_FLOAT, 0, 8, offsetof(mavlink_ahrs_t, omegaIz) }, \
30  { "accel_weight", NULL, MAVLINK_TYPE_FLOAT, 0, 12, offsetof(mavlink_ahrs_t, accel_weight) }, \
31  { "renorm_val", NULL, MAVLINK_TYPE_FLOAT, 0, 16, offsetof(mavlink_ahrs_t, renorm_val) }, \
32  { "error_rp", NULL, MAVLINK_TYPE_FLOAT, 0, 20, offsetof(mavlink_ahrs_t, error_rp) }, \
33  { "error_yaw", NULL, MAVLINK_TYPE_FLOAT, 0, 24, offsetof(mavlink_ahrs_t, error_yaw) }, \
34  } \
35 }
36 
37 
53 static inline uint16_t mavlink_msg_ahrs_pack(uint8_t system_id, uint8_t component_id, mavlink_message_t* msg,
54  float omegaIx, float omegaIy, float omegaIz, float accel_weight, float renorm_val, float error_rp, float error_yaw)
55 {
56 #if MAVLINK_NEED_BYTE_SWAP || !MAVLINK_ALIGNED_FIELDS
57  char buf[MAVLINK_MSG_ID_AHRS_LEN];
58  _mav_put_float(buf, 0, omegaIx);
59  _mav_put_float(buf, 4, omegaIy);
60  _mav_put_float(buf, 8, omegaIz);
61  _mav_put_float(buf, 12, accel_weight);
62  _mav_put_float(buf, 16, renorm_val);
63  _mav_put_float(buf, 20, error_rp);
64  _mav_put_float(buf, 24, error_yaw);
65 
67 #else
68  mavlink_ahrs_t packet;
69  packet.omegaIx = omegaIx;
70  packet.omegaIy = omegaIy;
71  packet.omegaIz = omegaIz;
72  packet.accel_weight = accel_weight;
73  packet.renorm_val = renorm_val;
74  packet.error_rp = error_rp;
75  packet.error_yaw = error_yaw;
76 
77  memcpy(_MAV_PAYLOAD_NON_CONST(msg), &packet, MAVLINK_MSG_ID_AHRS_LEN);
78 #endif
79 
80  msg->msgid = MAVLINK_MSG_ID_AHRS;
81 #if MAVLINK_CRC_EXTRA
82  return mavlink_finalize_message(msg, system_id, component_id, MAVLINK_MSG_ID_AHRS_LEN, MAVLINK_MSG_ID_AHRS_CRC);
83 #else
84  return mavlink_finalize_message(msg, system_id, component_id, MAVLINK_MSG_ID_AHRS_LEN);
85 #endif
86 }
87 
103 static inline uint16_t mavlink_msg_ahrs_pack_chan(uint8_t system_id, uint8_t component_id, uint8_t chan,
104  mavlink_message_t* msg,
105  float omegaIx,float omegaIy,float omegaIz,float accel_weight,float renorm_val,float error_rp,float error_yaw)
106 {
107 #if MAVLINK_NEED_BYTE_SWAP || !MAVLINK_ALIGNED_FIELDS
108  char buf[MAVLINK_MSG_ID_AHRS_LEN];
109  _mav_put_float(buf, 0, omegaIx);
110  _mav_put_float(buf, 4, omegaIy);
111  _mav_put_float(buf, 8, omegaIz);
112  _mav_put_float(buf, 12, accel_weight);
113  _mav_put_float(buf, 16, renorm_val);
114  _mav_put_float(buf, 20, error_rp);
115  _mav_put_float(buf, 24, error_yaw);
116 
118 #else
119  mavlink_ahrs_t packet;
120  packet.omegaIx = omegaIx;
121  packet.omegaIy = omegaIy;
122  packet.omegaIz = omegaIz;
123  packet.accel_weight = accel_weight;
124  packet.renorm_val = renorm_val;
125  packet.error_rp = error_rp;
126  packet.error_yaw = error_yaw;
127 
128  memcpy(_MAV_PAYLOAD_NON_CONST(msg), &packet, MAVLINK_MSG_ID_AHRS_LEN);
129 #endif
130 
131  msg->msgid = MAVLINK_MSG_ID_AHRS;
132 #if MAVLINK_CRC_EXTRA
133  return mavlink_finalize_message_chan(msg, system_id, component_id, chan, MAVLINK_MSG_ID_AHRS_LEN, MAVLINK_MSG_ID_AHRS_CRC);
134 #else
135  return mavlink_finalize_message_chan(msg, system_id, component_id, chan, MAVLINK_MSG_ID_AHRS_LEN);
136 #endif
137 }
138 
147 static inline uint16_t mavlink_msg_ahrs_encode(uint8_t system_id, uint8_t component_id, mavlink_message_t* msg, const mavlink_ahrs_t* ahrs)
148 {
149  return mavlink_msg_ahrs_pack(system_id, component_id, msg, ahrs->omegaIx, ahrs->omegaIy, ahrs->omegaIz, ahrs->accel_weight, ahrs->renorm_val, ahrs->error_rp, ahrs->error_yaw);
150 }
151 
161 static inline uint16_t mavlink_msg_ahrs_encode_chan(uint8_t system_id, uint8_t component_id, uint8_t chan, mavlink_message_t* msg, const mavlink_ahrs_t* ahrs)
162 {
163  return mavlink_msg_ahrs_pack_chan(system_id, component_id, chan, msg, ahrs->omegaIx, ahrs->omegaIy, ahrs->omegaIz, ahrs->accel_weight, ahrs->renorm_val, ahrs->error_rp, ahrs->error_yaw);
164 }
165 
178 #ifdef MAVLINK_USE_CONVENIENCE_FUNCTIONS
179 
180 static inline void mavlink_msg_ahrs_send(mavlink_channel_t chan, float omegaIx, float omegaIy, float omegaIz, float accel_weight, float renorm_val, float error_rp, float error_yaw)
181 {
182 #if MAVLINK_NEED_BYTE_SWAP || !MAVLINK_ALIGNED_FIELDS
183  char buf[MAVLINK_MSG_ID_AHRS_LEN];
184  _mav_put_float(buf, 0, omegaIx);
185  _mav_put_float(buf, 4, omegaIy);
186  _mav_put_float(buf, 8, omegaIz);
187  _mav_put_float(buf, 12, accel_weight);
188  _mav_put_float(buf, 16, renorm_val);
189  _mav_put_float(buf, 20, error_rp);
190  _mav_put_float(buf, 24, error_yaw);
191 
192 #if MAVLINK_CRC_EXTRA
193  _mav_finalize_message_chan_send(chan, MAVLINK_MSG_ID_AHRS, buf, MAVLINK_MSG_ID_AHRS_LEN, MAVLINK_MSG_ID_AHRS_CRC);
194 #else
195  _mav_finalize_message_chan_send(chan, MAVLINK_MSG_ID_AHRS, buf, MAVLINK_MSG_ID_AHRS_LEN);
196 #endif
197 #else
198  mavlink_ahrs_t packet;
199  packet.omegaIx = omegaIx;
200  packet.omegaIy = omegaIy;
201  packet.omegaIz = omegaIz;
202  packet.accel_weight = accel_weight;
203  packet.renorm_val = renorm_val;
204  packet.error_rp = error_rp;
205  packet.error_yaw = error_yaw;
206 
207 #if MAVLINK_CRC_EXTRA
208  _mav_finalize_message_chan_send(chan, MAVLINK_MSG_ID_AHRS, (const char *)&packet, MAVLINK_MSG_ID_AHRS_LEN, MAVLINK_MSG_ID_AHRS_CRC);
209 #else
210  _mav_finalize_message_chan_send(chan, MAVLINK_MSG_ID_AHRS, (const char *)&packet, MAVLINK_MSG_ID_AHRS_LEN);
211 #endif
212 #endif
213 }
214 
215 #if MAVLINK_MSG_ID_AHRS_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_ahrs_send_buf(mavlink_message_t *msgbuf, mavlink_channel_t chan, float omegaIx, float omegaIy, float omegaIz, float accel_weight, float renorm_val, float error_rp, float error_yaw)
224 {
225 #if MAVLINK_NEED_BYTE_SWAP || !MAVLINK_ALIGNED_FIELDS
226  char *buf = (char *)msgbuf;
227  _mav_put_float(buf, 0, omegaIx);
228  _mav_put_float(buf, 4, omegaIy);
229  _mav_put_float(buf, 8, omegaIz);
230  _mav_put_float(buf, 12, accel_weight);
231  _mav_put_float(buf, 16, renorm_val);
232  _mav_put_float(buf, 20, error_rp);
233  _mav_put_float(buf, 24, error_yaw);
234 
235 #if MAVLINK_CRC_EXTRA
236  _mav_finalize_message_chan_send(chan, MAVLINK_MSG_ID_AHRS, buf, MAVLINK_MSG_ID_AHRS_LEN, MAVLINK_MSG_ID_AHRS_CRC);
237 #else
238  _mav_finalize_message_chan_send(chan, MAVLINK_MSG_ID_AHRS, buf, MAVLINK_MSG_ID_AHRS_LEN);
239 #endif
240 #else
241  mavlink_ahrs_t *packet = (mavlink_ahrs_t *)msgbuf;
242  packet->omegaIx = omegaIx;
243  packet->omegaIy = omegaIy;
244  packet->omegaIz = omegaIz;
245  packet->accel_weight = accel_weight;
246  packet->renorm_val = renorm_val;
247  packet->error_rp = error_rp;
248  packet->error_yaw = error_yaw;
249 
250 #if MAVLINK_CRC_EXTRA
251  _mav_finalize_message_chan_send(chan, MAVLINK_MSG_ID_AHRS, (const char *)packet, MAVLINK_MSG_ID_AHRS_LEN, MAVLINK_MSG_ID_AHRS_CRC);
252 #else
253  _mav_finalize_message_chan_send(chan, MAVLINK_MSG_ID_AHRS, (const char *)packet, MAVLINK_MSG_ID_AHRS_LEN);
254 #endif
255 #endif
256 }
257 #endif
258 
259 #endif
260 
261 // MESSAGE AHRS UNPACKING
262 
263 
269 static inline float mavlink_msg_ahrs_get_omegaIx(const mavlink_message_t* msg)
270 {
271  return _MAV_RETURN_float(msg, 0);
272 }
273 
279 static inline float mavlink_msg_ahrs_get_omegaIy(const mavlink_message_t* msg)
280 {
281  return _MAV_RETURN_float(msg, 4);
282 }
283 
289 static inline float mavlink_msg_ahrs_get_omegaIz(const mavlink_message_t* msg)
290 {
291  return _MAV_RETURN_float(msg, 8);
292 }
293 
299 static inline float mavlink_msg_ahrs_get_accel_weight(const mavlink_message_t* msg)
300 {
301  return _MAV_RETURN_float(msg, 12);
302 }
303 
309 static inline float mavlink_msg_ahrs_get_renorm_val(const mavlink_message_t* msg)
310 {
311  return _MAV_RETURN_float(msg, 16);
312 }
313 
319 static inline float mavlink_msg_ahrs_get_error_rp(const mavlink_message_t* msg)
320 {
321  return _MAV_RETURN_float(msg, 20);
322 }
323 
329 static inline float mavlink_msg_ahrs_get_error_yaw(const mavlink_message_t* msg)
330 {
331  return _MAV_RETURN_float(msg, 24);
332 }
333 
340 static inline void mavlink_msg_ahrs_decode(const mavlink_message_t* msg, mavlink_ahrs_t* ahrs)
341 {
342 #if MAVLINK_NEED_BYTE_SWAP
343  ahrs->omegaIx = mavlink_msg_ahrs_get_omegaIx(msg);
344  ahrs->omegaIy = mavlink_msg_ahrs_get_omegaIy(msg);
345  ahrs->omegaIz = mavlink_msg_ahrs_get_omegaIz(msg);
346  ahrs->accel_weight = mavlink_msg_ahrs_get_accel_weight(msg);
347  ahrs->renorm_val = mavlink_msg_ahrs_get_renorm_val(msg);
348  ahrs->error_rp = mavlink_msg_ahrs_get_error_rp(msg);
349  ahrs->error_yaw = mavlink_msg_ahrs_get_error_yaw(msg);
350 #else
351  memcpy(ahrs, _MAV_PAYLOAD(msg), MAVLINK_MSG_ID_AHRS_LEN);
352 #endif
353 }
#define _mav_put_float(buf, wire_offset, b)
Definition: protocol.h:145