mavlink_msg_rosflight_cmd_ack.h
Go to the documentation of this file.
1 // MESSAGE ROSFLIGHT_CMD_ACK PACKING
2 
3 #define MAVLINK_MSG_ID_ROSFLIGHT_CMD_ACK 189
4 
6 {
7  uint8_t command; /*< */
8  uint8_t success; /*< */
10 
11 #define MAVLINK_MSG_ID_ROSFLIGHT_CMD_ACK_LEN 2
12 #define MAVLINK_MSG_ID_189_LEN 2
13 
14 #define MAVLINK_MSG_ID_ROSFLIGHT_CMD_ACK_CRC 113
15 #define MAVLINK_MSG_ID_189_CRC 113
16 
17 
18 
19 #define MAVLINK_MESSAGE_INFO_ROSFLIGHT_CMD_ACK { \
20  "ROSFLIGHT_CMD_ACK", \
21  2, \
22  { { "command", NULL, MAVLINK_TYPE_UINT8_T, 0, 0, offsetof(mavlink_rosflight_cmd_ack_t, command) }, \
23  { "success", NULL, MAVLINK_TYPE_UINT8_T, 0, 1, offsetof(mavlink_rosflight_cmd_ack_t, success) }, \
24  } \
25 }
26 
27 
38 static inline uint16_t mavlink_msg_rosflight_cmd_ack_pack(uint8_t system_id, uint8_t component_id, mavlink_message_t* msg,
39  uint8_t command, uint8_t success)
40 {
41 #if MAVLINK_NEED_BYTE_SWAP || !MAVLINK_ALIGNED_FIELDS
43  _mav_put_uint8_t(buf, 0, command);
44  _mav_put_uint8_t(buf, 1, success);
45 
47 #else
49  packet.command = command;
50  packet.success = success;
51 
53 #endif
54 
56 #if MAVLINK_CRC_EXTRA
58 #else
59  return mavlink_finalize_message(msg, system_id, component_id, MAVLINK_MSG_ID_ROSFLIGHT_CMD_ACK_LEN);
60 #endif
61 }
62 
73 static inline uint16_t mavlink_msg_rosflight_cmd_ack_pack_chan(uint8_t system_id, uint8_t component_id, uint8_t chan,
74  mavlink_message_t* msg,
75  uint8_t command,uint8_t success)
76 {
77 #if MAVLINK_NEED_BYTE_SWAP || !MAVLINK_ALIGNED_FIELDS
79  _mav_put_uint8_t(buf, 0, command);
80  _mav_put_uint8_t(buf, 1, success);
81 
83 #else
85  packet.command = command;
86  packet.success = success;
87 
89 #endif
90 
92 #if MAVLINK_CRC_EXTRA
94 #else
95  return mavlink_finalize_message_chan(msg, system_id, component_id, chan, MAVLINK_MSG_ID_ROSFLIGHT_CMD_ACK_LEN);
96 #endif
97 }
98 
107 static inline uint16_t mavlink_msg_rosflight_cmd_ack_encode(uint8_t system_id, uint8_t component_id, mavlink_message_t* msg, const mavlink_rosflight_cmd_ack_t* rosflight_cmd_ack)
108 {
109  return mavlink_msg_rosflight_cmd_ack_pack(system_id, component_id, msg, rosflight_cmd_ack->command, rosflight_cmd_ack->success);
110 }
111 
121 static inline uint16_t mavlink_msg_rosflight_cmd_ack_encode_chan(uint8_t system_id, uint8_t component_id, uint8_t chan, mavlink_message_t* msg, const mavlink_rosflight_cmd_ack_t* rosflight_cmd_ack)
122 {
123  return mavlink_msg_rosflight_cmd_ack_pack_chan(system_id, component_id, chan, msg, rosflight_cmd_ack->command, rosflight_cmd_ack->success);
124 }
125 
133 #ifdef MAVLINK_USE_CONVENIENCE_FUNCTIONS
134 
135 static inline void mavlink_msg_rosflight_cmd_ack_send(mavlink_channel_t chan, uint8_t command, uint8_t success)
136 {
137 #if MAVLINK_NEED_BYTE_SWAP || !MAVLINK_ALIGNED_FIELDS
139  _mav_put_uint8_t(buf, 0, command);
140  _mav_put_uint8_t(buf, 1, success);
141 
142 #if MAVLINK_CRC_EXTRA
144 #else
145  _mav_finalize_message_chan_send(chan, MAVLINK_MSG_ID_ROSFLIGHT_CMD_ACK, buf, MAVLINK_MSG_ID_ROSFLIGHT_CMD_ACK_LEN);
146 #endif
147 #else
149  packet.command = command;
150  packet.success = success;
151 
152 #if MAVLINK_CRC_EXTRA
153  _mav_finalize_message_chan_send(chan, MAVLINK_MSG_ID_ROSFLIGHT_CMD_ACK, (const char *)&packet, MAVLINK_MSG_ID_ROSFLIGHT_CMD_ACK_LEN, MAVLINK_MSG_ID_ROSFLIGHT_CMD_ACK_CRC);
154 #else
155  _mav_finalize_message_chan_send(chan, MAVLINK_MSG_ID_ROSFLIGHT_CMD_ACK, (const char *)&packet, MAVLINK_MSG_ID_ROSFLIGHT_CMD_ACK_LEN);
156 #endif
157 #endif
158 }
159 
160 #if MAVLINK_MSG_ID_ROSFLIGHT_CMD_ACK_LEN <= MAVLINK_MAX_PAYLOAD_LEN
161 /*
162  This varient of _send() can be used to save stack space by re-using
163  memory from the receive buffer. The caller provides a
164  mavlink_message_t which is the size of a full mavlink message. This
165  is usually the receive buffer for the channel, and allows a reply to an
166  incoming message with minimum stack space usage.
167  */
168 static inline void mavlink_msg_rosflight_cmd_ack_send_buf(mavlink_message_t *msgbuf, mavlink_channel_t chan, uint8_t command, uint8_t success)
169 {
170 #if MAVLINK_NEED_BYTE_SWAP || !MAVLINK_ALIGNED_FIELDS
171  char *buf = (char *)msgbuf;
172  _mav_put_uint8_t(buf, 0, command);
173  _mav_put_uint8_t(buf, 1, success);
174 
175 #if MAVLINK_CRC_EXTRA
177 #else
178  _mav_finalize_message_chan_send(chan, MAVLINK_MSG_ID_ROSFLIGHT_CMD_ACK, buf, MAVLINK_MSG_ID_ROSFLIGHT_CMD_ACK_LEN);
179 #endif
180 #else
182  packet->command = command;
183  packet->success = success;
184 
185 #if MAVLINK_CRC_EXTRA
186  _mav_finalize_message_chan_send(chan, MAVLINK_MSG_ID_ROSFLIGHT_CMD_ACK, (const char *)packet, MAVLINK_MSG_ID_ROSFLIGHT_CMD_ACK_LEN, MAVLINK_MSG_ID_ROSFLIGHT_CMD_ACK_CRC);
187 #else
188  _mav_finalize_message_chan_send(chan, MAVLINK_MSG_ID_ROSFLIGHT_CMD_ACK, (const char *)packet, MAVLINK_MSG_ID_ROSFLIGHT_CMD_ACK_LEN);
189 #endif
190 #endif
191 }
192 #endif
193 
194 #endif
195 
196 // MESSAGE ROSFLIGHT_CMD_ACK UNPACKING
197 
198 
204 static inline uint8_t mavlink_msg_rosflight_cmd_ack_get_command(const mavlink_message_t* msg)
205 {
206  return _MAV_RETURN_uint8_t(msg, 0);
207 }
208 
214 static inline uint8_t mavlink_msg_rosflight_cmd_ack_get_success(const mavlink_message_t* msg)
215 {
216  return _MAV_RETURN_uint8_t(msg, 1);
217 }
218 
225 static inline void mavlink_msg_rosflight_cmd_ack_decode(const mavlink_message_t* msg, mavlink_rosflight_cmd_ack_t* rosflight_cmd_ack)
226 {
227 #if MAVLINK_NEED_BYTE_SWAP
228  rosflight_cmd_ack->command = mavlink_msg_rosflight_cmd_ack_get_command(msg);
229  rosflight_cmd_ack->success = mavlink_msg_rosflight_cmd_ack_get_success(msg);
230 #else
231  memcpy(rosflight_cmd_ack, _MAV_PAYLOAD(msg), MAVLINK_MSG_ID_ROSFLIGHT_CMD_ACK_LEN);
232 #endif
233 }
#define _MAV_RETURN_uint8_t(msg, wire_offset)
Definition: protocol.h:244
#define _mav_put_uint8_t(buf, wire_offset, b)
Definition: protocol.h:140


rosflight
Author(s): Daniel Koch , James Jackson
autogenerated on Wed Jul 3 2019 20:00:13