NinjaFlight
 All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
mavlink_msg_data_log.h
Go to the documentation of this file.
1 // MESSAGE DATA_LOG PACKING
2 
3 #define MAVLINK_MSG_ID_DATA_LOG 177
4 
5 typedef struct __mavlink_data_log_t
6 {
7  float fl_1;
8  float fl_2;
9  float fl_3;
10  float fl_4;
11  float fl_5;
12  float fl_6;
14 
15 #define MAVLINK_MSG_ID_DATA_LOG_LEN 24
16 #define MAVLINK_MSG_ID_177_LEN 24
17 
18 #define MAVLINK_MSG_ID_DATA_LOG_CRC 167
19 #define MAVLINK_MSG_ID_177_CRC 167
20 
21 
22 
23 #define MAVLINK_MESSAGE_INFO_DATA_LOG { \
24  "DATA_LOG", \
25  6, \
26  { { "fl_1", NULL, MAVLINK_TYPE_FLOAT, 0, 0, offsetof(mavlink_data_log_t, fl_1) }, \
27  { "fl_2", NULL, MAVLINK_TYPE_FLOAT, 0, 4, offsetof(mavlink_data_log_t, fl_2) }, \
28  { "fl_3", NULL, MAVLINK_TYPE_FLOAT, 0, 8, offsetof(mavlink_data_log_t, fl_3) }, \
29  { "fl_4", NULL, MAVLINK_TYPE_FLOAT, 0, 12, offsetof(mavlink_data_log_t, fl_4) }, \
30  { "fl_5", NULL, MAVLINK_TYPE_FLOAT, 0, 16, offsetof(mavlink_data_log_t, fl_5) }, \
31  { "fl_6", NULL, MAVLINK_TYPE_FLOAT, 0, 20, offsetof(mavlink_data_log_t, fl_6) }, \
32  } \
33 }
34 
35 
50 static inline uint16_t mavlink_msg_data_log_pack(uint8_t system_id, uint8_t component_id, mavlink_message_t* msg,
51  float fl_1, float fl_2, float fl_3, float fl_4, float fl_5, float fl_6)
52 {
53 #if MAVLINK_NEED_BYTE_SWAP || !MAVLINK_ALIGNED_FIELDS
55  _mav_put_float(buf, 0, fl_1);
56  _mav_put_float(buf, 4, fl_2);
57  _mav_put_float(buf, 8, fl_3);
58  _mav_put_float(buf, 12, fl_4);
59  _mav_put_float(buf, 16, fl_5);
60  _mav_put_float(buf, 20, fl_6);
61 
63 #else
64  mavlink_data_log_t packet;
65  packet.fl_1 = fl_1;
66  packet.fl_2 = fl_2;
67  packet.fl_3 = fl_3;
68  packet.fl_4 = fl_4;
69  packet.fl_5 = fl_5;
70  packet.fl_6 = fl_6;
71 
73 #endif
74 
75  msg->msgid = MAVLINK_MSG_ID_DATA_LOG;
76 #if MAVLINK_CRC_EXTRA
78 #else
79  return mavlink_finalize_message(msg, system_id, component_id, MAVLINK_MSG_ID_DATA_LOG_LEN);
80 #endif
81 }
82 
97 static inline uint16_t mavlink_msg_data_log_pack_chan(uint8_t system_id, uint8_t component_id, uint8_t chan,
98  mavlink_message_t* msg,
99  float fl_1,float fl_2,float fl_3,float fl_4,float fl_5,float fl_6)
100 {
101 #if MAVLINK_NEED_BYTE_SWAP || !MAVLINK_ALIGNED_FIELDS
102  char buf[MAVLINK_MSG_ID_DATA_LOG_LEN];
103  _mav_put_float(buf, 0, fl_1);
104  _mav_put_float(buf, 4, fl_2);
105  _mav_put_float(buf, 8, fl_3);
106  _mav_put_float(buf, 12, fl_4);
107  _mav_put_float(buf, 16, fl_5);
108  _mav_put_float(buf, 20, fl_6);
109 
111 #else
112  mavlink_data_log_t packet;
113  packet.fl_1 = fl_1;
114  packet.fl_2 = fl_2;
115  packet.fl_3 = fl_3;
116  packet.fl_4 = fl_4;
117  packet.fl_5 = fl_5;
118  packet.fl_6 = fl_6;
119 
121 #endif
122 
123  msg->msgid = MAVLINK_MSG_ID_DATA_LOG;
124 #if MAVLINK_CRC_EXTRA
126 #else
127  return mavlink_finalize_message_chan(msg, system_id, component_id, chan, MAVLINK_MSG_ID_DATA_LOG_LEN);
128 #endif
129 }
130 
139 static inline uint16_t mavlink_msg_data_log_encode(uint8_t system_id, uint8_t component_id, mavlink_message_t* msg, const mavlink_data_log_t* data_log)
140 {
141  return mavlink_msg_data_log_pack(system_id, component_id, msg, data_log->fl_1, data_log->fl_2, data_log->fl_3, data_log->fl_4, data_log->fl_5, data_log->fl_6);
142 }
143 
153 static inline uint16_t mavlink_msg_data_log_encode_chan(uint8_t system_id, uint8_t component_id, uint8_t chan, mavlink_message_t* msg, const mavlink_data_log_t* data_log)
154 {
155  return mavlink_msg_data_log_pack_chan(system_id, component_id, chan, msg, data_log->fl_1, data_log->fl_2, data_log->fl_3, data_log->fl_4, data_log->fl_5, data_log->fl_6);
156 }
157 
169 #ifdef MAVLINK_USE_CONVENIENCE_FUNCTIONS
170 
171 static inline void mavlink_msg_data_log_send(mavlink_channel_t chan, float fl_1, float fl_2, float fl_3, float fl_4, float fl_5, float fl_6)
172 {
173 #if MAVLINK_NEED_BYTE_SWAP || !MAVLINK_ALIGNED_FIELDS
174  char buf[MAVLINK_MSG_ID_DATA_LOG_LEN];
175  _mav_put_float(buf, 0, fl_1);
176  _mav_put_float(buf, 4, fl_2);
177  _mav_put_float(buf, 8, fl_3);
178  _mav_put_float(buf, 12, fl_4);
179  _mav_put_float(buf, 16, fl_5);
180  _mav_put_float(buf, 20, fl_6);
181 
182 #if MAVLINK_CRC_EXTRA
183  _mav_finalize_message_chan_send(chan, MAVLINK_MSG_ID_DATA_LOG, buf, MAVLINK_MSG_ID_DATA_LOG_LEN, MAVLINK_MSG_ID_DATA_LOG_CRC);
184 #else
185  _mav_finalize_message_chan_send(chan, MAVLINK_MSG_ID_DATA_LOG, buf, MAVLINK_MSG_ID_DATA_LOG_LEN);
186 #endif
187 #else
188  mavlink_data_log_t packet;
189  packet.fl_1 = fl_1;
190  packet.fl_2 = fl_2;
191  packet.fl_3 = fl_3;
192  packet.fl_4 = fl_4;
193  packet.fl_5 = fl_5;
194  packet.fl_6 = fl_6;
195 
196 #if MAVLINK_CRC_EXTRA
197  _mav_finalize_message_chan_send(chan, MAVLINK_MSG_ID_DATA_LOG, (const char *)&packet, MAVLINK_MSG_ID_DATA_LOG_LEN, MAVLINK_MSG_ID_DATA_LOG_CRC);
198 #else
199  _mav_finalize_message_chan_send(chan, MAVLINK_MSG_ID_DATA_LOG, (const char *)&packet, MAVLINK_MSG_ID_DATA_LOG_LEN);
200 #endif
201 #endif
202 }
203 
204 #if MAVLINK_MSG_ID_DATA_LOG_LEN <= MAVLINK_MAX_PAYLOAD_LEN
205 /*
206  This varient of _send() can be used to save stack space by re-using
207  memory from the receive buffer. The caller provides a
208  mavlink_message_t which is the size of a full mavlink message. This
209  is usually the receive buffer for the channel, and allows a reply to an
210  incoming message with minimum stack space usage.
211  */
212 static inline void mavlink_msg_data_log_send_buf(mavlink_message_t *msgbuf, mavlink_channel_t chan, float fl_1, float fl_2, float fl_3, float fl_4, float fl_5, float fl_6)
213 {
214 #if MAVLINK_NEED_BYTE_SWAP || !MAVLINK_ALIGNED_FIELDS
215  char *buf = (char *)msgbuf;
216  _mav_put_float(buf, 0, fl_1);
217  _mav_put_float(buf, 4, fl_2);
218  _mav_put_float(buf, 8, fl_3);
219  _mav_put_float(buf, 12, fl_4);
220  _mav_put_float(buf, 16, fl_5);
221  _mav_put_float(buf, 20, fl_6);
222 
223 #if MAVLINK_CRC_EXTRA
224  _mav_finalize_message_chan_send(chan, MAVLINK_MSG_ID_DATA_LOG, buf, MAVLINK_MSG_ID_DATA_LOG_LEN, MAVLINK_MSG_ID_DATA_LOG_CRC);
225 #else
226  _mav_finalize_message_chan_send(chan, MAVLINK_MSG_ID_DATA_LOG, buf, MAVLINK_MSG_ID_DATA_LOG_LEN);
227 #endif
228 #else
229  mavlink_data_log_t *packet = (mavlink_data_log_t *)msgbuf;
230  packet->fl_1 = fl_1;
231  packet->fl_2 = fl_2;
232  packet->fl_3 = fl_3;
233  packet->fl_4 = fl_4;
234  packet->fl_5 = fl_5;
235  packet->fl_6 = fl_6;
236 
237 #if MAVLINK_CRC_EXTRA
238  _mav_finalize_message_chan_send(chan, MAVLINK_MSG_ID_DATA_LOG, (const char *)packet, MAVLINK_MSG_ID_DATA_LOG_LEN, MAVLINK_MSG_ID_DATA_LOG_CRC);
239 #else
240  _mav_finalize_message_chan_send(chan, MAVLINK_MSG_ID_DATA_LOG, (const char *)packet, MAVLINK_MSG_ID_DATA_LOG_LEN);
241 #endif
242 #endif
243 }
244 #endif
245 
246 #endif
247 
248 // MESSAGE DATA_LOG UNPACKING
249 
250 
256 static inline float mavlink_msg_data_log_get_fl_1(const mavlink_message_t* msg)
257 {
258  return _MAV_RETURN_float(msg, 0);
259 }
260 
266 static inline float mavlink_msg_data_log_get_fl_2(const mavlink_message_t* msg)
267 {
268  return _MAV_RETURN_float(msg, 4);
269 }
270 
276 static inline float mavlink_msg_data_log_get_fl_3(const mavlink_message_t* msg)
277 {
278  return _MAV_RETURN_float(msg, 8);
279 }
280 
286 static inline float mavlink_msg_data_log_get_fl_4(const mavlink_message_t* msg)
287 {
288  return _MAV_RETURN_float(msg, 12);
289 }
290 
296 static inline float mavlink_msg_data_log_get_fl_5(const mavlink_message_t* msg)
297 {
298  return _MAV_RETURN_float(msg, 16);
299 }
300 
306 static inline float mavlink_msg_data_log_get_fl_6(const mavlink_message_t* msg)
307 {
308  return _MAV_RETURN_float(msg, 20);
309 }
310 
317 static inline void mavlink_msg_data_log_decode(const mavlink_message_t* msg, mavlink_data_log_t* data_log)
318 {
319 #if MAVLINK_NEED_BYTE_SWAP
320  data_log->fl_1 = mavlink_msg_data_log_get_fl_1(msg);
321  data_log->fl_2 = mavlink_msg_data_log_get_fl_2(msg);
322  data_log->fl_3 = mavlink_msg_data_log_get_fl_3(msg);
323  data_log->fl_4 = mavlink_msg_data_log_get_fl_4(msg);
324  data_log->fl_5 = mavlink_msg_data_log_get_fl_5(msg);
325  data_log->fl_6 = mavlink_msg_data_log_get_fl_6(msg);
326 #else
327  memcpy(data_log, _MAV_PAYLOAD(msg), MAVLINK_MSG_ID_DATA_LOG_LEN);
328 #endif
329 }
#define _mav_put_float(buf, wire_offset, b)
Definition: protocol.h:145