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