NinjaFlight
 All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
mavlink_msg_camera_status.h
Go to the documentation of this file.
1 // MESSAGE CAMERA_STATUS PACKING
2 
3 #define MAVLINK_MSG_ID_CAMERA_STATUS 179
4 
6 {
7  uint64_t time_usec;
8  float p1;
9  float p2;
10  float p3;
11  float p4;
12  uint16_t img_idx;
13  uint8_t target_system;
14  uint8_t cam_idx;
15  uint8_t event_id;
17 
18 #define MAVLINK_MSG_ID_CAMERA_STATUS_LEN 29
19 #define MAVLINK_MSG_ID_179_LEN 29
20 
21 #define MAVLINK_MSG_ID_CAMERA_STATUS_CRC 189
22 #define MAVLINK_MSG_ID_179_CRC 189
23 
24 
25 
26 #define MAVLINK_MESSAGE_INFO_CAMERA_STATUS { \
27  "CAMERA_STATUS", \
28  9, \
29  { { "time_usec", NULL, MAVLINK_TYPE_UINT64_T, 0, 0, offsetof(mavlink_camera_status_t, time_usec) }, \
30  { "p1", NULL, MAVLINK_TYPE_FLOAT, 0, 8, offsetof(mavlink_camera_status_t, p1) }, \
31  { "p2", NULL, MAVLINK_TYPE_FLOAT, 0, 12, offsetof(mavlink_camera_status_t, p2) }, \
32  { "p3", NULL, MAVLINK_TYPE_FLOAT, 0, 16, offsetof(mavlink_camera_status_t, p3) }, \
33  { "p4", NULL, MAVLINK_TYPE_FLOAT, 0, 20, offsetof(mavlink_camera_status_t, p4) }, \
34  { "img_idx", NULL, MAVLINK_TYPE_UINT16_T, 0, 24, offsetof(mavlink_camera_status_t, img_idx) }, \
35  { "target_system", NULL, MAVLINK_TYPE_UINT8_T, 0, 26, offsetof(mavlink_camera_status_t, target_system) }, \
36  { "cam_idx", NULL, MAVLINK_TYPE_UINT8_T, 0, 27, offsetof(mavlink_camera_status_t, cam_idx) }, \
37  { "event_id", NULL, MAVLINK_TYPE_UINT8_T, 0, 28, offsetof(mavlink_camera_status_t, event_id) }, \
38  } \
39 }
40 
41 
59 static inline uint16_t mavlink_msg_camera_status_pack(uint8_t system_id, uint8_t component_id, mavlink_message_t* msg,
60  uint64_t time_usec, uint8_t target_system, uint8_t cam_idx, uint16_t img_idx, uint8_t event_id, float p1, float p2, float p3, float p4)
61 {
62 #if MAVLINK_NEED_BYTE_SWAP || !MAVLINK_ALIGNED_FIELDS
64  _mav_put_uint64_t(buf, 0, time_usec);
65  _mav_put_float(buf, 8, p1);
66  _mav_put_float(buf, 12, p2);
67  _mav_put_float(buf, 16, p3);
68  _mav_put_float(buf, 20, p4);
69  _mav_put_uint16_t(buf, 24, img_idx);
70  _mav_put_uint8_t(buf, 26, target_system);
71  _mav_put_uint8_t(buf, 27, cam_idx);
72  _mav_put_uint8_t(buf, 28, event_id);
73 
75 #else
77  packet.time_usec = time_usec;
78  packet.p1 = p1;
79  packet.p2 = p2;
80  packet.p3 = p3;
81  packet.p4 = p4;
82  packet.img_idx = img_idx;
83  packet.target_system = target_system;
84  packet.cam_idx = cam_idx;
85  packet.event_id = event_id;
86 
88 #endif
89 
90  msg->msgid = MAVLINK_MSG_ID_CAMERA_STATUS;
91 #if MAVLINK_CRC_EXTRA
93 #else
94  return mavlink_finalize_message(msg, system_id, component_id, MAVLINK_MSG_ID_CAMERA_STATUS_LEN);
95 #endif
96 }
97 
115 static inline uint16_t mavlink_msg_camera_status_pack_chan(uint8_t system_id, uint8_t component_id, uint8_t chan,
116  mavlink_message_t* msg,
117  uint64_t time_usec,uint8_t target_system,uint8_t cam_idx,uint16_t img_idx,uint8_t event_id,float p1,float p2,float p3,float p4)
118 {
119 #if MAVLINK_NEED_BYTE_SWAP || !MAVLINK_ALIGNED_FIELDS
121  _mav_put_uint64_t(buf, 0, time_usec);
122  _mav_put_float(buf, 8, p1);
123  _mav_put_float(buf, 12, p2);
124  _mav_put_float(buf, 16, p3);
125  _mav_put_float(buf, 20, p4);
126  _mav_put_uint16_t(buf, 24, img_idx);
127  _mav_put_uint8_t(buf, 26, target_system);
128  _mav_put_uint8_t(buf, 27, cam_idx);
129  _mav_put_uint8_t(buf, 28, event_id);
130 
132 #else
134  packet.time_usec = time_usec;
135  packet.p1 = p1;
136  packet.p2 = p2;
137  packet.p3 = p3;
138  packet.p4 = p4;
139  packet.img_idx = img_idx;
140  packet.target_system = target_system;
141  packet.cam_idx = cam_idx;
142  packet.event_id = event_id;
143 
145 #endif
146 
147  msg->msgid = MAVLINK_MSG_ID_CAMERA_STATUS;
148 #if MAVLINK_CRC_EXTRA
150 #else
151  return mavlink_finalize_message_chan(msg, system_id, component_id, chan, MAVLINK_MSG_ID_CAMERA_STATUS_LEN);
152 #endif
153 }
154 
163 static inline uint16_t mavlink_msg_camera_status_encode(uint8_t system_id, uint8_t component_id, mavlink_message_t* msg, const mavlink_camera_status_t* camera_status)
164 {
165  return mavlink_msg_camera_status_pack(system_id, component_id, msg, camera_status->time_usec, camera_status->target_system, camera_status->cam_idx, camera_status->img_idx, camera_status->event_id, camera_status->p1, camera_status->p2, camera_status->p3, camera_status->p4);
166 }
167 
177 static inline uint16_t mavlink_msg_camera_status_encode_chan(uint8_t system_id, uint8_t component_id, uint8_t chan, mavlink_message_t* msg, const mavlink_camera_status_t* camera_status)
178 {
179  return mavlink_msg_camera_status_pack_chan(system_id, component_id, chan, msg, camera_status->time_usec, camera_status->target_system, camera_status->cam_idx, camera_status->img_idx, camera_status->event_id, camera_status->p1, camera_status->p2, camera_status->p3, camera_status->p4);
180 }
181 
196 #ifdef MAVLINK_USE_CONVENIENCE_FUNCTIONS
197 
198 static inline void mavlink_msg_camera_status_send(mavlink_channel_t chan, uint64_t time_usec, uint8_t target_system, uint8_t cam_idx, uint16_t img_idx, uint8_t event_id, float p1, float p2, float p3, float p4)
199 {
200 #if MAVLINK_NEED_BYTE_SWAP || !MAVLINK_ALIGNED_FIELDS
202  _mav_put_uint64_t(buf, 0, time_usec);
203  _mav_put_float(buf, 8, p1);
204  _mav_put_float(buf, 12, p2);
205  _mav_put_float(buf, 16, p3);
206  _mav_put_float(buf, 20, p4);
207  _mav_put_uint16_t(buf, 24, img_idx);
208  _mav_put_uint8_t(buf, 26, target_system);
209  _mav_put_uint8_t(buf, 27, cam_idx);
210  _mav_put_uint8_t(buf, 28, event_id);
211 
212 #if MAVLINK_CRC_EXTRA
214 #else
215  _mav_finalize_message_chan_send(chan, MAVLINK_MSG_ID_CAMERA_STATUS, buf, MAVLINK_MSG_ID_CAMERA_STATUS_LEN);
216 #endif
217 #else
219  packet.time_usec = time_usec;
220  packet.p1 = p1;
221  packet.p2 = p2;
222  packet.p3 = p3;
223  packet.p4 = p4;
224  packet.img_idx = img_idx;
225  packet.target_system = target_system;
226  packet.cam_idx = cam_idx;
227  packet.event_id = event_id;
228 
229 #if MAVLINK_CRC_EXTRA
230  _mav_finalize_message_chan_send(chan, MAVLINK_MSG_ID_CAMERA_STATUS, (const char *)&packet, MAVLINK_MSG_ID_CAMERA_STATUS_LEN, MAVLINK_MSG_ID_CAMERA_STATUS_CRC);
231 #else
232  _mav_finalize_message_chan_send(chan, MAVLINK_MSG_ID_CAMERA_STATUS, (const char *)&packet, MAVLINK_MSG_ID_CAMERA_STATUS_LEN);
233 #endif
234 #endif
235 }
236 
237 #if MAVLINK_MSG_ID_CAMERA_STATUS_LEN <= MAVLINK_MAX_PAYLOAD_LEN
238 /*
239  This varient of _send() can be used to save stack space by re-using
240  memory from the receive buffer. The caller provides a
241  mavlink_message_t which is the size of a full mavlink message. This
242  is usually the receive buffer for the channel, and allows a reply to an
243  incoming message with minimum stack space usage.
244  */
245 static inline void mavlink_msg_camera_status_send_buf(mavlink_message_t *msgbuf, mavlink_channel_t chan, uint64_t time_usec, uint8_t target_system, uint8_t cam_idx, uint16_t img_idx, uint8_t event_id, float p1, float p2, float p3, float p4)
246 {
247 #if MAVLINK_NEED_BYTE_SWAP || !MAVLINK_ALIGNED_FIELDS
248  char *buf = (char *)msgbuf;
249  _mav_put_uint64_t(buf, 0, time_usec);
250  _mav_put_float(buf, 8, p1);
251  _mav_put_float(buf, 12, p2);
252  _mav_put_float(buf, 16, p3);
253  _mav_put_float(buf, 20, p4);
254  _mav_put_uint16_t(buf, 24, img_idx);
255  _mav_put_uint8_t(buf, 26, target_system);
256  _mav_put_uint8_t(buf, 27, cam_idx);
257  _mav_put_uint8_t(buf, 28, event_id);
258 
259 #if MAVLINK_CRC_EXTRA
261 #else
262  _mav_finalize_message_chan_send(chan, MAVLINK_MSG_ID_CAMERA_STATUS, buf, MAVLINK_MSG_ID_CAMERA_STATUS_LEN);
263 #endif
264 #else
266  packet->time_usec = time_usec;
267  packet->p1 = p1;
268  packet->p2 = p2;
269  packet->p3 = p3;
270  packet->p4 = p4;
271  packet->img_idx = img_idx;
272  packet->target_system = target_system;
273  packet->cam_idx = cam_idx;
274  packet->event_id = event_id;
275 
276 #if MAVLINK_CRC_EXTRA
277  _mav_finalize_message_chan_send(chan, MAVLINK_MSG_ID_CAMERA_STATUS, (const char *)packet, MAVLINK_MSG_ID_CAMERA_STATUS_LEN, MAVLINK_MSG_ID_CAMERA_STATUS_CRC);
278 #else
279  _mav_finalize_message_chan_send(chan, MAVLINK_MSG_ID_CAMERA_STATUS, (const char *)packet, MAVLINK_MSG_ID_CAMERA_STATUS_LEN);
280 #endif
281 #endif
282 }
283 #endif
284 
285 #endif
286 
287 // MESSAGE CAMERA_STATUS UNPACKING
288 
289 
295 static inline uint64_t mavlink_msg_camera_status_get_time_usec(const mavlink_message_t* msg)
296 {
297  return _MAV_RETURN_uint64_t(msg, 0);
298 }
299 
305 static inline uint8_t mavlink_msg_camera_status_get_target_system(const mavlink_message_t* msg)
306 {
307  return _MAV_RETURN_uint8_t(msg, 26);
308 }
309 
315 static inline uint8_t mavlink_msg_camera_status_get_cam_idx(const mavlink_message_t* msg)
316 {
317  return _MAV_RETURN_uint8_t(msg, 27);
318 }
319 
325 static inline uint16_t mavlink_msg_camera_status_get_img_idx(const mavlink_message_t* msg)
326 {
327  return _MAV_RETURN_uint16_t(msg, 24);
328 }
329 
335 static inline uint8_t mavlink_msg_camera_status_get_event_id(const mavlink_message_t* msg)
336 {
337  return _MAV_RETURN_uint8_t(msg, 28);
338 }
339 
345 static inline float mavlink_msg_camera_status_get_p1(const mavlink_message_t* msg)
346 {
347  return _MAV_RETURN_float(msg, 8);
348 }
349 
355 static inline float mavlink_msg_camera_status_get_p2(const mavlink_message_t* msg)
356 {
357  return _MAV_RETURN_float(msg, 12);
358 }
359 
365 static inline float mavlink_msg_camera_status_get_p3(const mavlink_message_t* msg)
366 {
367  return _MAV_RETURN_float(msg, 16);
368 }
369 
375 static inline float mavlink_msg_camera_status_get_p4(const mavlink_message_t* msg)
376 {
377  return _MAV_RETURN_float(msg, 20);
378 }
379 
386 static inline void mavlink_msg_camera_status_decode(const mavlink_message_t* msg, mavlink_camera_status_t* camera_status)
387 {
388 #if MAVLINK_NEED_BYTE_SWAP
389  camera_status->time_usec = mavlink_msg_camera_status_get_time_usec(msg);
390  camera_status->p1 = mavlink_msg_camera_status_get_p1(msg);
391  camera_status->p2 = mavlink_msg_camera_status_get_p2(msg);
392  camera_status->p3 = mavlink_msg_camera_status_get_p3(msg);
393  camera_status->p4 = mavlink_msg_camera_status_get_p4(msg);
394  camera_status->img_idx = mavlink_msg_camera_status_get_img_idx(msg);
395  camera_status->target_system = mavlink_msg_camera_status_get_target_system(msg);
396  camera_status->cam_idx = mavlink_msg_camera_status_get_cam_idx(msg);
397  camera_status->event_id = mavlink_msg_camera_status_get_event_id(msg);
398 #else
399  memcpy(camera_status, _MAV_PAYLOAD(msg), MAVLINK_MSG_ID_CAMERA_STATUS_LEN);
400 #endif
401 }
#define _mav_put_float(buf, wire_offset, b)
Definition: protocol.h:145
#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_uint64_t(buf, wire_offset, b)
Definition: protocol.h:143
#define _mav_put_uint16_t(buf, wire_offset, b)
Definition: protocol.h:139