source: flair-src/branches/mavlink/tools/Controller/Mavlink/src/include/common/mavlink_msg_mission_ack.h@ 76

Last change on this file since 76 was 75, checked in by Thomas Fuhrmann, 8 years ago

Change the version of mavlink generated messages and rename it to include

File size: 9.9 KB
Line 
1// MESSAGE MISSION_ACK PACKING
2
3#define MAVLINK_MSG_ID_MISSION_ACK 47
4
5typedef struct MAVLINK_PACKED __mavlink_mission_ack_t
6{
7 uint8_t target_system; /*< System ID*/
8 uint8_t target_component; /*< Component ID*/
9 uint8_t type; /*< See MAV_MISSION_RESULT enum*/
10} mavlink_mission_ack_t;
11
12#define MAVLINK_MSG_ID_MISSION_ACK_LEN 3
13#define MAVLINK_MSG_ID_MISSION_ACK_MIN_LEN 3
14#define MAVLINK_MSG_ID_47_LEN 3
15#define MAVLINK_MSG_ID_47_MIN_LEN 3
16
17#define MAVLINK_MSG_ID_MISSION_ACK_CRC 153
18#define MAVLINK_MSG_ID_47_CRC 153
19
20
21
22#if MAVLINK_COMMAND_24BIT
23#define MAVLINK_MESSAGE_INFO_MISSION_ACK { \
24 47, \
25 "MISSION_ACK", \
26 3, \
27 { { "target_system", NULL, MAVLINK_TYPE_UINT8_T, 0, 0, offsetof(mavlink_mission_ack_t, target_system) }, \
28 { "target_component", NULL, MAVLINK_TYPE_UINT8_T, 0, 1, offsetof(mavlink_mission_ack_t, target_component) }, \
29 { "type", NULL, MAVLINK_TYPE_UINT8_T, 0, 2, offsetof(mavlink_mission_ack_t, type) }, \
30 } \
31}
32#else
33#define MAVLINK_MESSAGE_INFO_MISSION_ACK { \
34 "MISSION_ACK", \
35 3, \
36 { { "target_system", NULL, MAVLINK_TYPE_UINT8_T, 0, 0, offsetof(mavlink_mission_ack_t, target_system) }, \
37 { "target_component", NULL, MAVLINK_TYPE_UINT8_T, 0, 1, offsetof(mavlink_mission_ack_t, target_component) }, \
38 { "type", NULL, MAVLINK_TYPE_UINT8_T, 0, 2, offsetof(mavlink_mission_ack_t, type) }, \
39 } \
40}
41#endif
42
43/**
44 * @brief Pack a mission_ack message
45 * @param system_id ID of this system
46 * @param component_id ID of this component (e.g. 200 for IMU)
47 * @param msg The MAVLink message to compress the data into
48 *
49 * @param target_system System ID
50 * @param target_component Component ID
51 * @param type See MAV_MISSION_RESULT enum
52 * @return length of the message in bytes (excluding serial stream start sign)
53 */
54static inline uint16_t mavlink_msg_mission_ack_pack(uint8_t system_id, uint8_t component_id, mavlink_message_t* msg,
55 uint8_t target_system, uint8_t target_component, uint8_t type)
56{
57#if MAVLINK_NEED_BYTE_SWAP || !MAVLINK_ALIGNED_FIELDS
58 char buf[MAVLINK_MSG_ID_MISSION_ACK_LEN];
59 _mav_put_uint8_t(buf, 0, target_system);
60 _mav_put_uint8_t(buf, 1, target_component);
61 _mav_put_uint8_t(buf, 2, type);
62
63 memcpy(_MAV_PAYLOAD_NON_CONST(msg), buf, MAVLINK_MSG_ID_MISSION_ACK_LEN);
64#else
65 mavlink_mission_ack_t packet;
66 packet.target_system = target_system;
67 packet.target_component = target_component;
68 packet.type = type;
69
70 memcpy(_MAV_PAYLOAD_NON_CONST(msg), &packet, MAVLINK_MSG_ID_MISSION_ACK_LEN);
71#endif
72
73 msg->msgid = MAVLINK_MSG_ID_MISSION_ACK;
74 return mavlink_finalize_message(msg, system_id, component_id, MAVLINK_MSG_ID_MISSION_ACK_MIN_LEN, MAVLINK_MSG_ID_MISSION_ACK_LEN, MAVLINK_MSG_ID_MISSION_ACK_CRC);
75}
76
77/**
78 * @brief Pack a mission_ack message on a channel
79 * @param system_id ID of this system
80 * @param component_id ID of this component (e.g. 200 for IMU)
81 * @param chan The MAVLink channel this message will be sent over
82 * @param msg The MAVLink message to compress the data into
83 * @param target_system System ID
84 * @param target_component Component ID
85 * @param type See MAV_MISSION_RESULT enum
86 * @return length of the message in bytes (excluding serial stream start sign)
87 */
88static inline uint16_t mavlink_msg_mission_ack_pack_chan(uint8_t system_id, uint8_t component_id, uint8_t chan,
89 mavlink_message_t* msg,
90 uint8_t target_system,uint8_t target_component,uint8_t type)
91{
92#if MAVLINK_NEED_BYTE_SWAP || !MAVLINK_ALIGNED_FIELDS
93 char buf[MAVLINK_MSG_ID_MISSION_ACK_LEN];
94 _mav_put_uint8_t(buf, 0, target_system);
95 _mav_put_uint8_t(buf, 1, target_component);
96 _mav_put_uint8_t(buf, 2, type);
97
98 memcpy(_MAV_PAYLOAD_NON_CONST(msg), buf, MAVLINK_MSG_ID_MISSION_ACK_LEN);
99#else
100 mavlink_mission_ack_t packet;
101 packet.target_system = target_system;
102 packet.target_component = target_component;
103 packet.type = type;
104
105 memcpy(_MAV_PAYLOAD_NON_CONST(msg), &packet, MAVLINK_MSG_ID_MISSION_ACK_LEN);
106#endif
107
108 msg->msgid = MAVLINK_MSG_ID_MISSION_ACK;
109 return mavlink_finalize_message_chan(msg, system_id, component_id, chan, MAVLINK_MSG_ID_MISSION_ACK_MIN_LEN, MAVLINK_MSG_ID_MISSION_ACK_LEN, MAVLINK_MSG_ID_MISSION_ACK_CRC);
110}
111
112/**
113 * @brief Encode a mission_ack struct
114 *
115 * @param system_id ID of this system
116 * @param component_id ID of this component (e.g. 200 for IMU)
117 * @param msg The MAVLink message to compress the data into
118 * @param mission_ack C-struct to read the message contents from
119 */
120static inline uint16_t mavlink_msg_mission_ack_encode(uint8_t system_id, uint8_t component_id, mavlink_message_t* msg, const mavlink_mission_ack_t* mission_ack)
121{
122 return mavlink_msg_mission_ack_pack(system_id, component_id, msg, mission_ack->target_system, mission_ack->target_component, mission_ack->type);
123}
124
125/**
126 * @brief Encode a mission_ack struct on a channel
127 *
128 * @param system_id ID of this system
129 * @param component_id ID of this component (e.g. 200 for IMU)
130 * @param chan The MAVLink channel this message will be sent over
131 * @param msg The MAVLink message to compress the data into
132 * @param mission_ack C-struct to read the message contents from
133 */
134static inline uint16_t mavlink_msg_mission_ack_encode_chan(uint8_t system_id, uint8_t component_id, uint8_t chan, mavlink_message_t* msg, const mavlink_mission_ack_t* mission_ack)
135{
136 return mavlink_msg_mission_ack_pack_chan(system_id, component_id, chan, msg, mission_ack->target_system, mission_ack->target_component, mission_ack->type);
137}
138
139/**
140 * @brief Send a mission_ack message
141 * @param chan MAVLink channel to send the message
142 *
143 * @param target_system System ID
144 * @param target_component Component ID
145 * @param type See MAV_MISSION_RESULT enum
146 */
147#ifdef MAVLINK_USE_CONVENIENCE_FUNCTIONS
148
149static inline void mavlink_msg_mission_ack_send(mavlink_channel_t chan, uint8_t target_system, uint8_t target_component, uint8_t type)
150{
151#if MAVLINK_NEED_BYTE_SWAP || !MAVLINK_ALIGNED_FIELDS
152 char buf[MAVLINK_MSG_ID_MISSION_ACK_LEN];
153 _mav_put_uint8_t(buf, 0, target_system);
154 _mav_put_uint8_t(buf, 1, target_component);
155 _mav_put_uint8_t(buf, 2, type);
156
157 _mav_finalize_message_chan_send(chan, MAVLINK_MSG_ID_MISSION_ACK, buf, MAVLINK_MSG_ID_MISSION_ACK_MIN_LEN, MAVLINK_MSG_ID_MISSION_ACK_LEN, MAVLINK_MSG_ID_MISSION_ACK_CRC);
158#else
159 mavlink_mission_ack_t packet;
160 packet.target_system = target_system;
161 packet.target_component = target_component;
162 packet.type = type;
163
164 _mav_finalize_message_chan_send(chan, MAVLINK_MSG_ID_MISSION_ACK, (const char *)&packet, MAVLINK_MSG_ID_MISSION_ACK_MIN_LEN, MAVLINK_MSG_ID_MISSION_ACK_LEN, MAVLINK_MSG_ID_MISSION_ACK_CRC);
165#endif
166}
167
168/**
169 * @brief Send a mission_ack message
170 * @param chan MAVLink channel to send the message
171 * @param struct The MAVLink struct to serialize
172 */
173static inline void mavlink_msg_mission_ack_send_struct(mavlink_channel_t chan, const mavlink_mission_ack_t* mission_ack)
174{
175#if MAVLINK_NEED_BYTE_SWAP || !MAVLINK_ALIGNED_FIELDS
176 mavlink_msg_mission_ack_send(chan, mission_ack->target_system, mission_ack->target_component, mission_ack->type);
177#else
178 _mav_finalize_message_chan_send(chan, MAVLINK_MSG_ID_MISSION_ACK, (const char *)mission_ack, MAVLINK_MSG_ID_MISSION_ACK_MIN_LEN, MAVLINK_MSG_ID_MISSION_ACK_LEN, MAVLINK_MSG_ID_MISSION_ACK_CRC);
179#endif
180}
181
182#if MAVLINK_MSG_ID_MISSION_ACK_LEN <= MAVLINK_MAX_PAYLOAD_LEN
183/*
184 This varient of _send() can be used to save stack space by re-using
185 memory from the receive buffer. The caller provides a
186 mavlink_message_t which is the size of a full mavlink message. This
187 is usually the receive buffer for the channel, and allows a reply to an
188 incoming message with minimum stack space usage.
189 */
190static inline void mavlink_msg_mission_ack_send_buf(mavlink_message_t *msgbuf, mavlink_channel_t chan, uint8_t target_system, uint8_t target_component, uint8_t type)
191{
192#if MAVLINK_NEED_BYTE_SWAP || !MAVLINK_ALIGNED_FIELDS
193 char *buf = (char *)msgbuf;
194 _mav_put_uint8_t(buf, 0, target_system);
195 _mav_put_uint8_t(buf, 1, target_component);
196 _mav_put_uint8_t(buf, 2, type);
197
198 _mav_finalize_message_chan_send(chan, MAVLINK_MSG_ID_MISSION_ACK, buf, MAVLINK_MSG_ID_MISSION_ACK_MIN_LEN, MAVLINK_MSG_ID_MISSION_ACK_LEN, MAVLINK_MSG_ID_MISSION_ACK_CRC);
199#else
200 mavlink_mission_ack_t *packet = (mavlink_mission_ack_t *)msgbuf;
201 packet->target_system = target_system;
202 packet->target_component = target_component;
203 packet->type = type;
204
205 _mav_finalize_message_chan_send(chan, MAVLINK_MSG_ID_MISSION_ACK, (const char *)packet, MAVLINK_MSG_ID_MISSION_ACK_MIN_LEN, MAVLINK_MSG_ID_MISSION_ACK_LEN, MAVLINK_MSG_ID_MISSION_ACK_CRC);
206#endif
207}
208#endif
209
210#endif
211
212// MESSAGE MISSION_ACK UNPACKING
213
214
215/**
216 * @brief Get field target_system from mission_ack message
217 *
218 * @return System ID
219 */
220static inline uint8_t mavlink_msg_mission_ack_get_target_system(const mavlink_message_t* msg)
221{
222 return _MAV_RETURN_uint8_t(msg, 0);
223}
224
225/**
226 * @brief Get field target_component from mission_ack message
227 *
228 * @return Component ID
229 */
230static inline uint8_t mavlink_msg_mission_ack_get_target_component(const mavlink_message_t* msg)
231{
232 return _MAV_RETURN_uint8_t(msg, 1);
233}
234
235/**
236 * @brief Get field type from mission_ack message
237 *
238 * @return See MAV_MISSION_RESULT enum
239 */
240static inline uint8_t mavlink_msg_mission_ack_get_type(const mavlink_message_t* msg)
241{
242 return _MAV_RETURN_uint8_t(msg, 2);
243}
244
245/**
246 * @brief Decode a mission_ack message into a struct
247 *
248 * @param msg The message to decode
249 * @param mission_ack C-struct to decode the message contents into
250 */
251static inline void mavlink_msg_mission_ack_decode(const mavlink_message_t* msg, mavlink_mission_ack_t* mission_ack)
252{
253#if MAVLINK_NEED_BYTE_SWAP || !MAVLINK_ALIGNED_FIELDS
254 mission_ack->target_system = mavlink_msg_mission_ack_get_target_system(msg);
255 mission_ack->target_component = mavlink_msg_mission_ack_get_target_component(msg);
256 mission_ack->type = mavlink_msg_mission_ack_get_type(msg);
257#else
258 uint8_t len = msg->len < MAVLINK_MSG_ID_MISSION_ACK_LEN? msg->len : MAVLINK_MSG_ID_MISSION_ACK_LEN;
259 memset(mission_ack, 0, MAVLINK_MSG_ID_MISSION_ACK_LEN);
260 memcpy(mission_ack, _MAV_PAYLOAD(msg), len);
261#endif
262}
Note: See TracBrowser for help on using the repository browser.