NinjaFlight
 All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
mavlink_msg_nav_filter_bias.h
Go to the documentation of this file.
1 // MESSAGE NAV_FILTER_BIAS PACKING
2 
3 #define MAVLINK_MSG_ID_NAV_FILTER_BIAS 220
4 
6 {
7  uint64_t usec;
8  float accel_0;
9  float accel_1;
10  float accel_2;
11  float gyro_0;
12  float gyro_1;
13  float gyro_2;
15 
16 #define MAVLINK_MSG_ID_NAV_FILTER_BIAS_LEN 32
17 #define MAVLINK_MSG_ID_220_LEN 32
18 
19 #define MAVLINK_MSG_ID_NAV_FILTER_BIAS_CRC 34
20 #define MAVLINK_MSG_ID_220_CRC 34
21 
22 
23 
24 #define MAVLINK_MESSAGE_INFO_NAV_FILTER_BIAS { \
25  "NAV_FILTER_BIAS", \
26  7, \
27  { { "usec", NULL, MAVLINK_TYPE_UINT64_T, 0, 0, offsetof(mavlink_nav_filter_bias_t, usec) }, \
28  { "accel_0", NULL, MAVLINK_TYPE_FLOAT, 0, 8, offsetof(mavlink_nav_filter_bias_t, accel_0) }, \
29  { "accel_1", NULL, MAVLINK_TYPE_FLOAT, 0, 12, offsetof(mavlink_nav_filter_bias_t, accel_1) }, \
30  { "accel_2", NULL, MAVLINK_TYPE_FLOAT, 0, 16, offsetof(mavlink_nav_filter_bias_t, accel_2) }, \
31  { "gyro_0", NULL, MAVLINK_TYPE_FLOAT, 0, 20, offsetof(mavlink_nav_filter_bias_t, gyro_0) }, \
32  { "gyro_1", NULL, MAVLINK_TYPE_FLOAT, 0, 24, offsetof(mavlink_nav_filter_bias_t, gyro_1) }, \
33  { "gyro_2", NULL, MAVLINK_TYPE_FLOAT, 0, 28, offsetof(mavlink_nav_filter_bias_t, gyro_2) }, \
34  } \
35 }
36 
37 
53 static inline uint16_t mavlink_msg_nav_filter_bias_pack(uint8_t system_id, uint8_t component_id, mavlink_message_t* msg,
54  uint64_t usec, float accel_0, float accel_1, float accel_2, float gyro_0, float gyro_1, float gyro_2)
55 {
56 #if MAVLINK_NEED_BYTE_SWAP || !MAVLINK_ALIGNED_FIELDS
58  _mav_put_uint64_t(buf, 0, usec);
59  _mav_put_float(buf, 8, accel_0);
60  _mav_put_float(buf, 12, accel_1);
61  _mav_put_float(buf, 16, accel_2);
62  _mav_put_float(buf, 20, gyro_0);
63  _mav_put_float(buf, 24, gyro_1);
64  _mav_put_float(buf, 28, gyro_2);
65 
67 #else
69  packet.usec = usec;
70  packet.accel_0 = accel_0;
71  packet.accel_1 = accel_1;
72  packet.accel_2 = accel_2;
73  packet.gyro_0 = gyro_0;
74  packet.gyro_1 = gyro_1;
75  packet.gyro_2 = gyro_2;
76 
78 #endif
79 
80  msg->msgid = MAVLINK_MSG_ID_NAV_FILTER_BIAS;
81 #if MAVLINK_CRC_EXTRA
83 #else
84  return mavlink_finalize_message(msg, system_id, component_id, MAVLINK_MSG_ID_NAV_FILTER_BIAS_LEN);
85 #endif
86 }
87 
103 static inline uint16_t mavlink_msg_nav_filter_bias_pack_chan(uint8_t system_id, uint8_t component_id, uint8_t chan,
104  mavlink_message_t* msg,
105  uint64_t usec,float accel_0,float accel_1,float accel_2,float gyro_0,float gyro_1,float gyro_2)
106 {
107 #if MAVLINK_NEED_BYTE_SWAP || !MAVLINK_ALIGNED_FIELDS
109  _mav_put_uint64_t(buf, 0, usec);
110  _mav_put_float(buf, 8, accel_0);
111  _mav_put_float(buf, 12, accel_1);
112  _mav_put_float(buf, 16, accel_2);
113  _mav_put_float(buf, 20, gyro_0);
114  _mav_put_float(buf, 24, gyro_1);
115  _mav_put_float(buf, 28, gyro_2);
116 
118 #else
120  packet.usec = usec;
121  packet.accel_0 = accel_0;
122  packet.accel_1 = accel_1;
123  packet.accel_2 = accel_2;
124  packet.gyro_0 = gyro_0;
125  packet.gyro_1 = gyro_1;
126  packet.gyro_2 = gyro_2;
127 
129 #endif
130 
131  msg->msgid = MAVLINK_MSG_ID_NAV_FILTER_BIAS;
132 #if MAVLINK_CRC_EXTRA
134 #else
135  return mavlink_finalize_message_chan(msg, system_id, component_id, chan, MAVLINK_MSG_ID_NAV_FILTER_BIAS_LEN);
136 #endif
137 }
138 
147 static inline uint16_t mavlink_msg_nav_filter_bias_encode(uint8_t system_id, uint8_t component_id, mavlink_message_t* msg, const mavlink_nav_filter_bias_t* nav_filter_bias)
148 {
149  return mavlink_msg_nav_filter_bias_pack(system_id, component_id, msg, nav_filter_bias->usec, nav_filter_bias->accel_0, nav_filter_bias->accel_1, nav_filter_bias->accel_2, nav_filter_bias->gyro_0, nav_filter_bias->gyro_1, nav_filter_bias->gyro_2);
150 }
151 
161 static inline uint16_t mavlink_msg_nav_filter_bias_encode_chan(uint8_t system_id, uint8_t component_id, uint8_t chan, mavlink_message_t* msg, const mavlink_nav_filter_bias_t* nav_filter_bias)
162 {
163  return mavlink_msg_nav_filter_bias_pack_chan(system_id, component_id, chan, msg, nav_filter_bias->usec, nav_filter_bias->accel_0, nav_filter_bias->accel_1, nav_filter_bias->accel_2, nav_filter_bias->gyro_0, nav_filter_bias->gyro_1, nav_filter_bias->gyro_2);
164 }
165 
178 #ifdef MAVLINK_USE_CONVENIENCE_FUNCTIONS
179 
180 static inline void mavlink_msg_nav_filter_bias_send(mavlink_channel_t chan, uint64_t usec, float accel_0, float accel_1, float accel_2, float gyro_0, float gyro_1, float gyro_2)
181 {
182 #if MAVLINK_NEED_BYTE_SWAP || !MAVLINK_ALIGNED_FIELDS
184  _mav_put_uint64_t(buf, 0, usec);
185  _mav_put_float(buf, 8, accel_0);
186  _mav_put_float(buf, 12, accel_1);
187  _mav_put_float(buf, 16, accel_2);
188  _mav_put_float(buf, 20, gyro_0);
189  _mav_put_float(buf, 24, gyro_1);
190  _mav_put_float(buf, 28, gyro_2);
191 
192 #if MAVLINK_CRC_EXTRA
194 #else
195  _mav_finalize_message_chan_send(chan, MAVLINK_MSG_ID_NAV_FILTER_BIAS, buf, MAVLINK_MSG_ID_NAV_FILTER_BIAS_LEN);
196 #endif
197 #else
199  packet.usec = usec;
200  packet.accel_0 = accel_0;
201  packet.accel_1 = accel_1;
202  packet.accel_2 = accel_2;
203  packet.gyro_0 = gyro_0;
204  packet.gyro_1 = gyro_1;
205  packet.gyro_2 = gyro_2;
206 
207 #if MAVLINK_CRC_EXTRA
208  _mav_finalize_message_chan_send(chan, MAVLINK_MSG_ID_NAV_FILTER_BIAS, (const char *)&packet, MAVLINK_MSG_ID_NAV_FILTER_BIAS_LEN, MAVLINK_MSG_ID_NAV_FILTER_BIAS_CRC);
209 #else
210  _mav_finalize_message_chan_send(chan, MAVLINK_MSG_ID_NAV_FILTER_BIAS, (const char *)&packet, MAVLINK_MSG_ID_NAV_FILTER_BIAS_LEN);
211 #endif
212 #endif
213 }
214 
215 #if MAVLINK_MSG_ID_NAV_FILTER_BIAS_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_nav_filter_bias_send_buf(mavlink_message_t *msgbuf, mavlink_channel_t chan, uint64_t usec, float accel_0, float accel_1, float accel_2, float gyro_0, float gyro_1, float gyro_2)
224 {
225 #if MAVLINK_NEED_BYTE_SWAP || !MAVLINK_ALIGNED_FIELDS
226  char *buf = (char *)msgbuf;
227  _mav_put_uint64_t(buf, 0, usec);
228  _mav_put_float(buf, 8, accel_0);
229  _mav_put_float(buf, 12, accel_1);
230  _mav_put_float(buf, 16, accel_2);
231  _mav_put_float(buf, 20, gyro_0);
232  _mav_put_float(buf, 24, gyro_1);
233  _mav_put_float(buf, 28, gyro_2);
234 
235 #if MAVLINK_CRC_EXTRA
237 #else
238  _mav_finalize_message_chan_send(chan, MAVLINK_MSG_ID_NAV_FILTER_BIAS, buf, MAVLINK_MSG_ID_NAV_FILTER_BIAS_LEN);
239 #endif
240 #else
242  packet->usec = usec;
243  packet->accel_0 = accel_0;
244  packet->accel_1 = accel_1;
245  packet->accel_2 = accel_2;
246  packet->gyro_0 = gyro_0;
247  packet->gyro_1 = gyro_1;
248  packet->gyro_2 = gyro_2;
249 
250 #if MAVLINK_CRC_EXTRA
251  _mav_finalize_message_chan_send(chan, MAVLINK_MSG_ID_NAV_FILTER_BIAS, (const char *)packet, MAVLINK_MSG_ID_NAV_FILTER_BIAS_LEN, MAVLINK_MSG_ID_NAV_FILTER_BIAS_CRC);
252 #else
253  _mav_finalize_message_chan_send(chan, MAVLINK_MSG_ID_NAV_FILTER_BIAS, (const char *)packet, MAVLINK_MSG_ID_NAV_FILTER_BIAS_LEN);
254 #endif
255 #endif
256 }
257 #endif
258 
259 #endif
260 
261 // MESSAGE NAV_FILTER_BIAS UNPACKING
262 
263 
269 static inline uint64_t mavlink_msg_nav_filter_bias_get_usec(const mavlink_message_t* msg)
270 {
271  return _MAV_RETURN_uint64_t(msg, 0);
272 }
273 
279 static inline float mavlink_msg_nav_filter_bias_get_accel_0(const mavlink_message_t* msg)
280 {
281  return _MAV_RETURN_float(msg, 8);
282 }
283 
289 static inline float mavlink_msg_nav_filter_bias_get_accel_1(const mavlink_message_t* msg)
290 {
291  return _MAV_RETURN_float(msg, 12);
292 }
293 
299 static inline float mavlink_msg_nav_filter_bias_get_accel_2(const mavlink_message_t* msg)
300 {
301  return _MAV_RETURN_float(msg, 16);
302 }
303 
309 static inline float mavlink_msg_nav_filter_bias_get_gyro_0(const mavlink_message_t* msg)
310 {
311  return _MAV_RETURN_float(msg, 20);
312 }
313 
319 static inline float mavlink_msg_nav_filter_bias_get_gyro_1(const mavlink_message_t* msg)
320 {
321  return _MAV_RETURN_float(msg, 24);
322 }
323 
329 static inline float mavlink_msg_nav_filter_bias_get_gyro_2(const mavlink_message_t* msg)
330 {
331  return _MAV_RETURN_float(msg, 28);
332 }
333 
340 static inline void mavlink_msg_nav_filter_bias_decode(const mavlink_message_t* msg, mavlink_nav_filter_bias_t* nav_filter_bias)
341 {
342 #if MAVLINK_NEED_BYTE_SWAP
343  nav_filter_bias->usec = mavlink_msg_nav_filter_bias_get_usec(msg);
344  nav_filter_bias->accel_0 = mavlink_msg_nav_filter_bias_get_accel_0(msg);
345  nav_filter_bias->accel_1 = mavlink_msg_nav_filter_bias_get_accel_1(msg);
346  nav_filter_bias->accel_2 = mavlink_msg_nav_filter_bias_get_accel_2(msg);
347  nav_filter_bias->gyro_0 = mavlink_msg_nav_filter_bias_get_gyro_0(msg);
348  nav_filter_bias->gyro_1 = mavlink_msg_nav_filter_bias_get_gyro_1(msg);
349  nav_filter_bias->gyro_2 = mavlink_msg_nav_filter_bias_get_gyro_2(msg);
350 #else
351  memcpy(nav_filter_bias, _MAV_PAYLOAD(msg), MAVLINK_MSG_ID_NAV_FILTER_BIAS_LEN);
352 #endif
353 }
#define _mav_put_float(buf, wire_offset, b)
Definition: protocol.h:145
#define _mav_put_uint64_t(buf, wire_offset, b)
Definition: protocol.h:143